uppy/examples/react-native-expo/SelectFilesButton.js
2023-01-05 11:48:48 +01:00

25 lines
520 B
JavaScript

import React from 'react'
import { Text, TouchableHighlight, StyleSheet } 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,
},
})