探索React Native原生模块:Gnotes实践
import React, { Component } from 'react';
import { View, Text, StyleSheet } from 'react-native';
export default class GnotesPractice extends Component {
render() {
return (
<View style={styles.container}>
<Text style={styles.welcome}>
Welcome to Gnotes Practice!
</Text>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
},
welcome: {
fontSize: 20,
textAlign: 'center',
margin: 10,
},
});
这段代码展示了如何在React Native中创建一个简单的组件,该组件使用了Flexbox布局来居中显示一个欢迎消息。同时,它还演示了如何使用StyleSheet
来定义组件的样式,这是React Native中管理样式的推荐方式。
评论已关闭