admin管理员组文章数量:1344322
I have separated styles.js
and app.js
for a simple app. And I have image resources defined as global constant variables. (For logos and profiles) I tried to add these constant image resources in styles.js
as well. But with my current method and syntax, I can't export these constant image resources from styles.js
because they are no defined in styles variable wrapper.
styles.js:
'use strict'
import React, { Component } from 'react';
import {StyleSheet} from 'react-native';
/*
const background_img= require("../../resource/mybackground.png");
I tried to define the resource path here
*/
var styles = StyleSheet.create({
/*Styles Definition*/
});
export default styles
app.js:
'use strict'
import React, { Component } from 'react';
import { AppRegistry, Text, TextInput, View, Image,
TouchableOpacity, Alert} from 'react-native';
import styles from './styles.js';
/*const background= require("../../resource/mybackground.png");*/
// I want to move this part to styles.js
export class LoginScene extends Component {
constructor(props) {
super(props);
}
render() {
return (
<Image
style={[styles.background, styles.container]}
source={background} //I want to replace to styles.background_img
resizeMode="cover"
></Image>
/*Other view definitions*/
);
}
}
export default LoginScene
I've indicated where I want to make my change in the above code with ment. If I want to route the source file as what I did above, what should I change in styles.js
so that I can export the constant global variables at the same time with styles variable wrapper?
I have separated styles.js
and app.js
for a simple app. And I have image resources defined as global constant variables. (For logos and profiles) I tried to add these constant image resources in styles.js
as well. But with my current method and syntax, I can't export these constant image resources from styles.js
because they are no defined in styles variable wrapper.
styles.js:
'use strict'
import React, { Component } from 'react';
import {StyleSheet} from 'react-native';
/*
const background_img= require("../../resource/mybackground.png");
I tried to define the resource path here
*/
var styles = StyleSheet.create({
/*Styles Definition*/
});
export default styles
app.js:
'use strict'
import React, { Component } from 'react';
import { AppRegistry, Text, TextInput, View, Image,
TouchableOpacity, Alert} from 'react-native';
import styles from './styles.js';
/*const background= require("../../resource/mybackground.png");*/
// I want to move this part to styles.js
export class LoginScene extends Component {
constructor(props) {
super(props);
}
render() {
return (
<Image
style={[styles.background, styles.container]}
source={background} //I want to replace to styles.background_img
resizeMode="cover"
></Image>
/*Other view definitions*/
);
}
}
export default LoginScene
I've indicated where I want to make my change in the above code with ment. If I want to route the source file as what I did above, what should I change in styles.js
so that I can export the constant global variables at the same time with styles variable wrapper?
1 Answer
Reset to default 9You can export styles as default, then you can also export another variable which can contain a value or an object.
import React, { Component } from 'react';
import {StyleSheet} from 'react-native';
export const assets = {
background: require("../../resource/mybackground.png"),
}
var styles = StyleSheet.create({
/*Styles Definition*/
});
export default styles;
then you can just import the default and the named exports when needed:
import styles, { assets } from './styles.js';
本文标签: javascriptexport global variable defined in react styles js fileStack Overflow
版权声明:本文标题:javascript - export global variable defined in react styles js file - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743772306a2536343.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论