新初始化的项目都会自动生成一个预览界面的模板代码,这个模板代码会随着RN的不同版本的发布而不同。
问题1:这个模板可以删吗?
答:可以
问题2:是按照这个模板写还是按照课程中推荐的方式写呢?
答:建议按照课程中推荐的方式写也就是通过标准的component的方式写。
如:
import React, {Component} from 'react';
import {Platform, StyleSheet, Text, View} from 'react-native';
export default class App extends Component{
render() {
return (
<View style={styles.container}>
<Text style={styles.welcome}> to React Native!</Text>
<Text style={styles.instructions}>To get started, edit App.js</Text>
<Text style={styles.instructions}>{instructions}</Text>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#F5FCFF',
},
welcome: {
fontSize: 20,
textAlign: 'center',
margin: 10,
},
instructions: {
textAlign: 'center',
color: '#333333',
marginBottom: 5,
},
});