2017-05-14 88 views
1

我想樣式的文本元素,但我發現了以下錯誤:陣營母語:找不到變量:樣式表

找不到變量:樣式表

這是代碼:

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

const Header =() => (
    <Text style = {styles.textStyle}>This is the header</Text> 
); 

const styles = StyleSheet.create({ 
    textStyle: { 
     fontSize: 20 
    } 
}); 
export default Header; 

我可以找出問題所在,我錯過了什麼嗎?

回答

2

在使用它之前導入StyleSheet。

import { StyleSheet, Text } from 'react-native'; 
+0

非常感謝你Sricharan –