我正在尝试使用react-native
创建具有注册表单的应用。一旦TextInput
成为焦点,是否有办法获取系统的详细信息(例如手机所有者的名字和姓氏)作为输入建议?
我尝试使用textContentType =“ givenName”作为TextInput
的属性,但无法正常工作。
<TextInput
autoCapitalize={'none'}
autoCorrect={false}
autoFocus={false}
defaultValue={null}
placeholder={'First Name*'}
returnKeyType={'done'}
textContentType={"givenName"}
underlineColorAndroid={'transparent'}
value={this.state.fname_val}
/>