File tree 2 files changed +8
-0
lines changed
2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -128,6 +128,8 @@ const App = () => {
128
128
rootStyle= {styles .codeFieldRoot }
129
129
keyboardType= " number-pad"
130
130
textContentType= " oneTimeCode"
131
+ autoComplete= {Platform .select ({ android: ' sms-otp' , default: ' one-time-code' })}
132
+ testID= " my-code-input"
131
133
renderCell= {({index, symbol, isFocused}) => (
132
134
< Text
133
135
key= {index}
Original file line number Diff line number Diff line change 1
1
import {
2
+ Platform ,
2
3
StyleProp ,
3
4
TextInput ,
4
5
TextInputProps ,
@@ -39,6 +40,10 @@ interface BaseProps {
39
40
}
40
41
41
42
const DEFAULT_CELL_COUNT = 4 ;
43
+ const autoComplete = Platform . select ( {
44
+ android : 'sms-otp' ,
45
+ default : 'one-time-code' ,
46
+ } ) ;
42
47
43
48
function CodeFieldComponent (
44
49
{
@@ -84,6 +89,7 @@ function CodeFieldComponent(
84
89
autoCapitalize = "characters"
85
90
underlineColorAndroid = "transparent"
86
91
maxLength = { cellCount }
92
+ autoComplete = { autoComplete }
87
93
{ ...rest }
88
94
value = { value }
89
95
onBlur = { focusState . onBlur }
You can’t perform that action at this time.
0 commit comments