Skip to content

Commit ad40f32

Browse files
committed
feature: Add autoComplete prop
1 parent e4ee515 commit ad40f32

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,8 @@ const App = () => {
128128
rootStyle={styles.codeFieldRoot}
129129
keyboardType="number-pad"
130130
textContentType="oneTimeCode"
131+
autoComplete={Platform.select({ android: 'sms-otp', default: 'one-time-code' })}
132+
testID="my-code-input"
131133
renderCell={({index, symbol, isFocused}) => (
132134
<Text
133135
key={index}

src/CodeField.tsx

+6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import {
2+
Platform,
23
StyleProp,
34
TextInput,
45
TextInputProps,
@@ -39,6 +40,10 @@ interface BaseProps {
3940
}
4041

4142
const DEFAULT_CELL_COUNT = 4;
43+
const autoComplete = Platform.select({
44+
android: 'sms-otp',
45+
default: 'one-time-code',
46+
});
4247

4348
function CodeFieldComponent(
4449
{
@@ -84,6 +89,7 @@ function CodeFieldComponent(
8489
autoCapitalize="characters"
8590
underlineColorAndroid="transparent"
8691
maxLength={cellCount}
92+
autoComplete={autoComplete}
8793
{...rest}
8894
value={value}
8995
onBlur={focusState.onBlur}

0 commit comments

Comments
 (0)