1- StyleSheet:ReactNative中使用的样式表,类似css样式表;StyleSheet.create创建样式实例,在应用中只会被创建一次,不用每次在渲染周期中重新创建;例如:
const styles = StyleSheet.create({
box:{
flex:1,
backgroundColor:'pink',
fontSize:20
},
main:{
backgroundColor:'red',
textAlign:'center'
}
})
2- AppRegistry:负责注册运行ReactNative应用程序的JavaScript入口;
registerComponent:注册应用程序的入口组件,第一个参数告知ReactNative哪一个组件,被注册为应用的根容器;第二个参数使用了ES6语法,箭头函数,返回的必须是
AppRegistry.registerComponent('HelloWorld', () => HelloWorld);
网友评论