1
我想知道如何在用戶單擊該字段以填充TextInput時清除「佔位符」。如何在用戶點擊輸入時清除TextInput的「佔位符」?
這是我的TextInput:
<TextInput
style={{height:40, borderColor: 'gray', borderWidth:1}}
onChangeText={(text) => this.setStoreName(text)}
value={this.state.storeName}
/>
我的構造函數:
constructor(props) {
super(props)
this.state = {
name: "Votre nom",
storeName: "Le nom de votre commerce",
email: "Votre email",
address: "L'adresse de votre commerce",
city: "Votre ville",
category: "Categorie",
password: "Votre mot de passe"
}
}
預先感謝您。
謝謝穆罕默德哈利勒,工程:) –
歡迎:) –