我想导入样式表组件index.js文件并在所有组件中使用 因为我想要所有应用程序组件的CSS
答案 0 :(得分:0)
为此,您可以按照style.js
或您提到的index.js
的样式创建文件
示例
import { StyleSheet } from 'react-native';
export default StyleSheet.create({
container: {
flex: 1
},
welcome: {
fontSize: 20
}
});
比您可以将此文件导入所需文件中的
import styles from './Style'