react-native-autocomplete-select
Version:
AutoComplete with selection for react-native
26 lines (23 loc) • 384 B
JavaScript
import { StyleSheet } from 'react-native'
const Styles = StyleSheet.create({
suggestionsWrapper: {
marginTop: 5,
marginBottom: 5
},
suggestion: {
height: 30,
padding: 5,
borderBottomColor: '#ddd',
borderBottomWidth: 1
},
suggestionText: {
fontSize: 15
},
input: {
fontSize: 15
},
wrapper: {
flex: 1
}
})
export default Styles