import React from 'react';
import { StyleSheet, Text, View } from 'react-native';
export default class App extends React.Component {
render() {
return (
<View style={styles.container}>
<Text style={styles.welcome}>Welcome to React Native!</Text>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#F5FCFF',
},
welcome: {
fontSize: 20,
textAlign: 'center',
margin: 10,
color: '#333333',
},
});
这段代码展示了如何在React Native应用中使用StyleSheet来定义样式,并将其应用于Text和View组件。这是学习React Native开发的基本步骤之一,对于了解如何构建跨平台的用户界面具有重要意义。