The <TextInput>
component has a textContentType
field which allows you to autofill certain fields, i.e. name, email, phone, etc. I can't seem to get it to autofill the phone number, am I missing anything?
<TextInput
autoFocus
blurOnSubmit={false}
editable={!loading}
placeholder="Enter phone number"
textContentType="telephoneNumber"
dataDetectorTypes="phoneNumber"
maxLength={100}
keyboardType="phone-pad"
value={phone}
/>
RN version is 0.55