SelectFilesButton.js 491 B

1234567891011121314151617181920
  1. import React from 'react' // eslint-disable-line no-unused-vars
  2. import { Text, TouchableHighlight } from 'react-native'
  3. export default function SelectFiles (props) {
  4. return (
  5. <TouchableHighlight
  6. onPress={props.showFilePicker}
  7. style={{
  8. backgroundColor: '#006bb7',
  9. padding: 15
  10. }}>
  11. <Text
  12. style={{
  13. color: '#fff',
  14. textAlign: 'center',
  15. fontSize: 17
  16. }}>Select files</Text>
  17. </TouchableHighlight>
  18. )
  19. }