[React-Native]RN组件学习-TextInput

基本上和Text具备一样的style

  • textAlign: 'center'

让文字居中

  • placeholder='用户名'

相当于原生中的hint属性

Note:这是一个props属性

  • numberOfLines={1}(props属性)

注明只有一行

  • autoFocus={true}

  • underlineColorAndroid={'transparent'}

如果你想让TextInput没有下滑线,那么你需要设置这个属性

你可能感兴趣的:([React-Native]RN组件学习-TextInput)