1
諸如<Button/>
和<TextInput/>
之類的元素在Android上以默認樣式呈現,但在iOS上它們幾乎沒有樣式。有沒有辦法在iOS上應用平臺樣式(例如邊框和填充)而無需在CSS中進行重現?React Native中的iOS TextInput樣式
例如
<View style={{flex:1, justifyContent: 'center'}}>
<Text>Please sign in</Text>
<TextInput placeholder="Username"/>
<TextInput placeholder="Password"/>
<Button onPress={() => {}} title="Sign in"/>
</View>