SearchTextInput.js 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. import { StyleSheet, Text, View } from 'react-native'
  2. import React from 'react'
  3. import { TextInput } from 'react-native-paper'
  4. import colors from '../../theme/colors'
  5. import fonts from '../../theme/fonts'
  6. const SearchTextInput = ({placeholder}) => {
  7. return (
  8. <View style={styles.container}>
  9. <TextInput
  10. editable
  11. mode='outlined'
  12. placeholder={placeholder ?? 'Which article you would like to see'}
  13. placeholderTextColor={colors.lightGray}
  14. dense
  15. style={{
  16. fontFamily: fonts.type.medium,
  17. fontSize: fonts.getSize(11),
  18. paddingVertical: 2,
  19. paddingHorizontal: 16,
  20. }}
  21. outlineStyle={{
  22. borderRadius: 24
  23. }}
  24. contentStyle={{
  25. fontFamily: fonts.type.regular,
  26. fontSize: fonts.getSize(14),
  27. color: colors.gray
  28. }}
  29. left={() => <IonIcon name='search-outline' size={24} color={colors.black} />}
  30. right={() => <List.Icon icon={"search"} color={colors.black} />}
  31. activeOutlineColor={colors.lightGray}
  32. activeUnderlineColor={colors.lightGray}
  33. outlineColor={colors.lightGray}
  34. cursorColor={colors.gray}
  35. onChangeText={(text) => {
  36. if (text.length > 0) {
  37. setSearching(true)
  38. } else {
  39. setSearching(false)
  40. }
  41. }}
  42. onSubmitEditing={null}
  43. // onChangeText={text => onChangeText(text)}
  44. />
  45. </View>
  46. )
  47. }
  48. export default SearchTextInput
  49. const styles = StyleSheet.create({
  50. container:{
  51. paddingVertical: fonts.getSize(8)
  52. }
  53. })