2
我是新的反應原生。我試圖在發生錯誤時更改TextInput的樣式。反應原生造型與條件
如何讓我的代碼不像醜陋?
<TextInput
style={touched && invalid?
{height: 40, backgroundColor: 'white', borderRadius: 5, padding: 10, borderWidth: 2, borderColor: 'red'} :
{height: 40, backgroundColor: 'white', borderRadius: 5, padding: 10}}
</TextInput>
這看起來不錯,謝謝! –