react-native style tag"找不到变量"错误

时间:2016-09-22 09:24:07

标签: reactjs react-native

我试图在我的组件中设置文本元素的样式,并且在尝试应用样式标记" textStyle "时,我得到以下内容错误:

enter image description here

这是我的代码:

import React from 'react';
import { Text } from 'react-native';

// Create a Component

const Header = () => {
  return <Text style={textStyle}>Albums!</Text>;
};

const styles = {
  textStyle: {
    fontSize: 30
  }
};
export default Header;

1 个答案:

答案 0 :(得分:7)

您缺少样式,请参阅以下代码块:

value