通过javascript创建自定义样式表

时间:2018-09-14 07:34:14

标签: javascript reactjs react-native

我正在组装一个本机应用程序,并注意到一个明显的烦恼。每次在创建样式表时要使用主题时,都必须从外部文件导入主题才能使用它。

类似这样的东西

File1.txt

来自React的背景,我想要做的就是将主题提供给各种构造函数,因此我不必每次都进行导入。有点像material-ui does it

import { StyleSheet } from 'react-native'
import { theme } from 'path-to-theme/theme.js'

const styles = StyleSheet.create({
    container: {
        backgroundColor: theme.background
    }
})

但是我不确定该如何执行。特别是将主题提供给样式表构造函数。有人对此有任何经验吗?甚至只是一个起点

0 个答案:

没有答案