[React] React Native 引用外部CSS ,





//style.js
//額外建立一個JS檔叫 style 內容就如下列描述
//將它建立為一個模組來做為引用使用
import {StyleSheet} from 'react-native';
 
module.exports = StyleSheet.create({
container: {
    backgroundColor: #ffff00,
    flex:1
  },
header: {
    paddingTop: 10,
    height:20,
    borderBottomColor: #ff00ff,
    borderBottomWidth: 1,
  },
....
....
});





//App.js
//宣告引用外部style
import styles from './style';





//App.js
<View style={styles.container}></View>


沒有留言:

張貼留言