您当前的位置: 首页 >  react native

React Native之StyleSheet样式表

xiangzhihong8 发布时间:2017-01-24 17:11:44 ,浏览量:3

概述

在React Native中,StyleSheet是实现了类似Web中CSS样式表的功能。最简单的使用如下,先定一个StyleSheet的样式表,然后在View中引用样式。

var styles = StyleSheet.create({
  container: {
    borderRadius: 4,
    borderWidth: 0.5,
    borderColor: '#d6d7da',
  },
  title: {
    fontSize: 19,
    fontWeight: 'bold',
  },
  activeTitle: {
    color: 'red',
  },
});

view中引用:


              
关注
打赏
1688896170
查看更多评论
0.0461s