📜  反应原生样式变量 - Javascript代码示例

📅  最后修改于: 2022-03-11 15:03:06.394000             🧑  作者: Mango

代码示例1
//you can use variables in the StyleSheet
const textColor = "white";
const font = 50;

const PresetStyle = StyleSheet.create({
  headderText: {
    color: textColor,
    fontSize: font,
    textAline: "center"
  },
})