使用React Native实现原生级别的APP:技巧与实践
import React from 'react';
import { View, Text, StyleSheet } from 'react-native';
const App = () => {
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',
},
welcome: {
fontSize: 20,
textAlign: 'center',
margin: 10,
},
});
export default App;
这段代码展示了如何使用React Native创建一个简单的APP,其中包含一个包含欢迎信息的屏幕。它使用了Flexbox布局来居中文本,并展示了如何使用StyleSheet来定义样式。这是学习React Native的一个很好的起点。
评论已关闭