FormTextInput.js 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. import {StyleSheet, Text, View} from 'react-native';
  2. import {TextInput} from 'react-native-paper'
  3. import React from 'react';
  4. import colors from '../../theme/colors';
  5. import fonts from '../../theme/fonts';
  6. const FormTextInput = props => {
  7. const {title, placeholder, value, onChange } = props;
  8. return (
  9. <View style={styles.inputContainer}>
  10. <View style={styles.header}>
  11. <Text style={styles.inputTitleText}>{title}</Text>
  12. <Text style={styles.requiredSymbol}>*</Text>
  13. </View>
  14. <TextInput
  15. editable
  16. mode='outlined'
  17. placeholder={placeholder ?? 'Title'}
  18. placeholderTextColor={colors.grayShade_300}
  19. dense
  20. style={{
  21. fontFamily: fonts.type.medium,
  22. fontSize: fonts.getSize(11),
  23. paddingVertical: 2,
  24. paddingHorizontal: 4,
  25. }}
  26. outlineStyle={{
  27. borderRadius: 4,
  28. }}
  29. contentStyle={{
  30. fontFamily: fonts.type.regular,
  31. fontSize: fonts.getSize(14),
  32. color: colors.gray,
  33. }}
  34. left={() => (
  35. <IonIcon name="search-outline" size={24} color={colors.black} />
  36. )}
  37. right={() => <List.Icon icon={'search'} color={colors.black} />}
  38. activeOutlineColor={colors.grayShade_300}
  39. activeUnderlineColor={colors.grayShade_300}
  40. outlineColor={colors.grayShade_300}
  41. cursorColor={colors.secondaryColor}
  42. selectionColor={colors.secondaryColor}
  43. onChangeText={(text) => {
  44. }}
  45. onSubmitEditing={null}
  46. value={value}
  47. />
  48. </View>
  49. );
  50. };
  51. export default FormTextInput;
  52. const styles = StyleSheet.create({
  53. inputContainer: {
  54. paddingTop: 4
  55. },
  56. inputTitleText: {
  57. fontFamily: fonts.type.semibold,
  58. color: colors.grayShade_200,
  59. },
  60. requiredSymbol: {
  61. fontFamily: fonts.type.semibold,
  62. color: colors.primaryColor,
  63. marginLeft: 1
  64. },
  65. header: {
  66. flexDirection: 'row'
  67. },
  68. });