<Button/>
和<TextInput/>
等元素在Android上使用默认样式呈现,但在iOS上它们几乎没有样式。有没有办法在iOS上应用平台样式(例如边框和填充)而不在CSS中复制它们?
例如
<View style={{flex:1, justifyContent: 'center'}}>
<Text>Please sign in</Text>
<TextInput placeholder="Username"/>
<TextInput placeholder="Password"/>
<Button onPress={() => {}} title="Sign in"/>
</View>