我对 React Native 完全陌生。我有一个文本输入区域,我希望用户通过单击一个按钮来完全清除他们输入的文本。React native 提供了 clearButtonMode,但这仅适用于 iOS。在安卓设备上寻找解决方案。这是我的文本输入..
<View style={editProfileStyle.textinputView}>
<TextInput
underlineColorAndroid={"rgba(0,0,0,0)"}
style={editProfileStyle.textInput}
placeholder="Enter your Name"
value={this.state.name}
onChangeText={name => this.setState({ name: name })}
/>
</View>