诸如 和 之类的元素在 Android 上以默认样式呈现,但在 iOS 上它们几乎没有样式。有没有办法在 iOS 上应用平台样式(例如边框和填充)而不用 CSS 复制它们?
例如
<View style={{flex:1, justifyContent: 'center'}}>
<Text>lease sign in</Text>
<TextInput placeholder="Username"/>
<TextInput placeholder="assword"/>
<Button onPress={() => {}} title="Sign in"/>
</View>
Best Answer-推荐答案 strong>
https://github.com/tombenner/nui
要应用它们,您可以使用 platform.select
关于React Native 中的 iOS TextInput 样式,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/41784839/
|