@@ -51,9 +51,43 @@ const FormInput = ({
5151} ) => (
5252 < View style = { [ styles . container , containerStyle && containerStyle ] } >
5353 < TextInput
54- selectionColor = { colors . grey3 }
55- value = { value }
54+ autoCapitalize = { autoCapitalize }
55+ autoCorrect = { autoCorrect }
56+ autoFocus = { autoFocus }
57+ blurOnSubmit = { blurOnSubmit }
58+ defaultValue = { defaultValue }
59+ keyboardType = { keyboardType }
60+ maxLength = { maxLength }
61+ multiline = { multiline }
62+ onBlur = { onBlur }
63+ onChange = { onChange }
5664 onChangeText = { onChangeText }
65+ onContentSizeChange = { onContentSizeChange }
66+ onEndEditing = { onEndEditing }
67+ onFocus = { onFocus }
68+ onLayout = { onLayout }
69+ onSelectionChange = { onSelectionChange }
70+ onSubmitEditing = { onSubmitEditing }
71+ placeholder = { placeholder }
72+ placeholderTextColor = { placeholderTextColor }
73+ returnKeyType = { returnKeyType }
74+ secureTextEntry = { secureTextEntry }
75+ selectTextOnFocus = { selectTextOnFocus }
76+ inlineImageLeft = { inlineImageLeft }
77+ inlineImagePadding = { inlineImagePadding }
78+ numberOfLines = { numberOfLines }
79+ returnKeyLabel = { returnKeyLabel }
80+ underlineColorAndroid = { underlineColorAndroid }
81+ clearButtonMode = { clearButtonMode }
82+ clearTextOnFocus = { clearTextOnFocus }
83+ dataDetectorTypes = { dataDetectorTypes }
84+ enablesReturnKeyAutomatically = { enablesReturnKeyAutomatically }
85+ keyboardAppearance = { keyboardAppearance }
86+ onKeyPress = { onKeyPress }
87+ selectionState = { selectionState }
88+ editable = { editable }
89+ selectionColor = { selectionColor || colors . grey3 }
90+ value = { value }
5791 style = { [ styles . input , inputStyle && inputStyle ] } />
5892 </ View >
5993)
0 commit comments