import { StyleSheet, Text, View } from 'react-native' import React from 'react' import { TextInput } from 'react-native-paper' import colors from '../../theme/colors' import fonts from '../../theme/fonts' const SearchTextInput = ({placeholder}) => { return ( } right={() => } activeOutlineColor={colors.lightGray} activeUnderlineColor={colors.lightGray} outlineColor={colors.lightGray} cursorColor={colors.gray} onChangeText={(text) => { if (text.length > 0) { setSearching(true) } else { setSearching(false) } }} onSubmitEditing={null} // onChangeText={text => onChangeText(text)} /> ) } export default SearchTextInput const styles = StyleSheet.create({ container:{ paddingVertical: fonts.getSize(8) } })