美文网首页工作生活
2. react-native 基础知识 StyleSheet

2. react-native 基础知识 StyleSheet

作者: hi文邵 | 来源:发表于2019-07-04 10:05 被阅读0次

    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);

    相关文章

      网友评论

        本文标题:2. react-native 基础知识 StyleSheet

        本文链接:https://www.haomeiwen.com/subject/gtflhctx.html