探索React Native实践 - 学习React Native代码库推荐
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,
},
});
这段代码是一个简单的React Native应用程序,它展示了如何创建一个基本的视图,并在其中显示一个欢迎消息。它使用了React组件的基本语法,并展示了如何使用React Native的<Text>
和<View>
组件来构建用户界面,以及如何使用StyleSheet.create
来定义样式。这是学习React Native的一个很好的起点。
评论已关闭