2017-01-21 65 views
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> 

Android screenshot

iOS screenshot

回答

相關問題