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>
<Text style={styles.instructions}>
To get started, edit App.js
</Text>
{ /* 添加新的文本组件 */ }
<Text style={styles.instructions}>
...and change this text
</Text>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#F5FCFF',
},
welcome: {
fontSize: 20,
textAlign: 'center',
margin: 10,
color: '#333333',
},
instructions: {
textAlign: 'center',
color: '#333333',
marginBottom: 5,
},
});
这段代码在原有的React Native项目中添加了一个新的<Text>
组件,并且修改了样式表以适应新增的文本。这个例子展示了如何使用React Native的样式表来定制应用中的文本显示,进一步增强了用户界面的多样性和互动体验。