uppy/examples/react-native-expo/SelectFilesButton.js

22 lines
502 B
JavaScript

import React from 'react'
import { StyleSheet, Text, TouchableHighlight } from 'react-native'
export default function SelectFiles({ showFilePicker }) {
return (
<TouchableHighlight onPress={showFilePicker} style={styles.button}>
<Text style={styles.text}>Select files</Text>
</TouchableHighlight>
)
}
const styles = StyleSheet.create({
button: {
backgroundColor: '#cc0077',
padding: 15,
},
text: {
color: '#fff',
textAlign: 'center',
fontSize: 17,
},
})