📅  最后修改于: 2023-12-03 14:52:32.796000             🧑  作者: Mango
在 React Native 中,我们可以使用多种方式来编写样式,其中单行编写分离样式是一种常用的方式。下面介绍如何在 React Native 中使用单行编写分离样式。
导入 StyleSheet 组件,它是 React Native 中用于创建样式的组件。
import { StyleSheet } from 'react-native';
使用 StyleSheet.create() 方法来定义样式,该方法接受一个对象作为参数,对象的每个属性都表示一个样式规则。
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#F5FCFF'
},
welcome: {
fontSize: 20,
textAlign: 'center',
margin: 10
}
});
使用样式时,将样式对象作为组件的 style 属性的值即可。
<View style={styles.container}>
<Text style={styles.welcome}>Welcome to React Native!</Text>
</View>
单行编写分离样式是 React Native 中非常常用的一种方式,通过以上步骤我们可以轻松实现。