admin管理员组

文章数量:1341428

I am trying to disable the autoplete on the web using TextInput from react-native-paper 3.10.1

<TextInput
  name="city"
  textContentType="addressCity"
  autoComplete="off"
  mode="outlined"
/>

The autoComplete="off" is replaced with autoplete="noop" in the rendered HTML, which cause the auto plete not to be disabled.

From where does the noop e from and how can I disable the autoplete?

Reproduction

/@kopax/curious-pizza

I am trying to disable the autoplete on the web using TextInput from react-native-paper 3.10.1

<TextInput
  name="city"
  textContentType="addressCity"
  autoComplete="off"
  mode="outlined"
/>

The autoComplete="off" is replaced with autoplete="noop" in the rendered HTML, which cause the auto plete not to be disabled.

From where does the noop e from and how can I disable the autoplete?

Reproduction

https://snack.expo.io/@kopax/curious-pizza

Share Improve this question asked May 23, 2020 at 13:50 Dimitri KopriwaDimitri Kopriwa 14.5k33 gold badges117 silver badges232 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 6

TextInput in react-native-web API says it follows The HTML autoplete attribute, but it doesn't work. It does however seem to follow aria-autoplete.

The TextInput in react-native follows it's own API. But there's this issue that renamed the prop in react native from autoCompleteType to autoComplete. So at the time of writing the React Native docs also need to be updated.

The solution:

<TextInput
  autoComplete={ Platform.OS === 'web' ? 'none' : 'off' }

Tested in:

expo: 42.0.4
react-native: 0.63.2 (https://github./expo/react-native/archive/sdk-42.0.0.tar.gz)
react-native-web (version): 0.13.18
react: 16.13.1
Browser: Chrome 96.0.4664.110

The prop you need to pass is autoCompleteType='off'. You can find more information on the props for the react-native provided TextInput ponent (who's props React Native Paper's TextInput also extends) here. https://reactnative.dev/docs/textinput.html#autopletetype

for ios textContentType={'none'}

本文标签: