1- StyleSheet:ReactNative中使用的樣式表徐钠,類似css樣式表癌刽;StyleSheet.create創(chuàng)建樣式實(shí)例,在應(yīng)用中只會(huì)被創(chuàng)建一次尝丐,不用每次在渲染周期中重新創(chuàng)建显拜;例如:
const styles = StyleSheet.create({
?box:{
? ?flex:1,
? ?backgroundColor:'pink',
? ?fontSize:20
?},
?main:{
? ? backgroundColor:'red',
? ? textAlign:'center'
?}
})
2- AppRegistry:負(fù)責(zé)注冊運(yùn)行ReactNative應(yīng)用程序的JavaScript入口;
registerComponent:注冊應(yīng)用程序的入口組件爹袁,第一個(gè)參數(shù)告知ReactNative哪一個(gè)組件远荠,被注冊為應(yīng)用的根容器;第二個(gè)參數(shù)使用了ES6語法失息,箭頭函數(shù)譬淳,返回的必須是
AppRegistry.registerComponent('HelloWorld', () => HelloWorld);