探索 GammaGos 的 React Native 项目:重塑移动应用开发的新视角
import React from 'react';
import { View, Text, StyleSheet } from 'react-native';
const ExampleComponent = () => {
return (
<View style={styles.container}>
<Text style={styles.text}>这是一个示例组件</Text>
</View>
);
};
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#FFFFFF',
},
text: {
fontSize: 20,
color: '#000000',
},
});
export default ExampleComponent;
这段代码展示了如何在React Native中创建一个简单的组件,该组件包含一个文本标签和一些样式定义。这是学习React Native开发的一个基本例子,展示了如何组织代码并实现用户界面的基本元素。
评论已关闭