我对应该是一个简单的解决方案感到有点困惑。我正在0.27.2版本上运行一个react-native项目,并且我的所有ios.js
文件都成功导入样式表,除了一个。
导入如下:
import React, {Component} from 'react';
import {
AppRegistry,
StyleSheet,
ScrollView,
Text,
View,
} from 'react-native';
import {
Cell,
CustomCell,
Section,
TableView
} from 'react-native-tableview-simple';
const styles = Stylesheet.create({
container: {
backgroundColor: 'rgb(20,25,30)',
}
}
);
Stylesheet.create({})
函数最终导致错误Can't find variable Stylesheet
被抛出。但是,我已经在具有相同导入的每个其他文件中以相同的方式声明样式,并且那些渲染样式没有错误。
此文件中唯一不同的是已声明了多个类。我是React的新手,所以我不知道这是否会引起问题。有谁知道造成这种情况的原因是什么?
答案 0 :(得分:5)
你混合了案例,你需要写
null
就像你命名它一样,当你导入它时。