美文网首页
Day3 State & Style

Day3 State & Style

作者: 十旋转45度 | 来源:发表于2017-11-21 10:58 被阅读0次

Mac + android
参考:State(状态)

吐槽
SE5的=>符号为什么不跟lambda的->统一起来


参考:样式

style属性可以是一个普通的JavaScript对象。这是最简单的用法,因而在示例代码中很常见。你还可以传入一个数组——在数组中位置居后的样式对象比居前的优先级更高,这样你可以间接实现样式的继承。
常见的做法是按顺序声明和使用style属性,以借鉴CSS中的“层叠”做法(即后声明的属性会覆盖先声明的同名属性)。

export default class LotsOfStyles extends Component {
  render() {
    return (
      <View>
        <Text style={styles.red}>just red</Text>
        <Text style={styles.bigblue}>just bigblue</Text>
        <Text style={[styles.bigblue, styles.red]}>bigblue, then red</Text>
        <Text style={[styles.red, styles.bigblue]}>red, then bigblue</Text>
      </View>
    );
  }
}

const styles = StyleSheet.create({
  bigblue: {
    color: 'blue',
    fontWeight: 'bold',
    fontSize: 30,
  },
  red: {
    color: 'red',
  },
});

注:不是后面的整个样式覆盖前者,是后者跟前者重叠的部分才覆盖


相关文章

网友评论

      本文标题:Day3 State & Style

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