create-native-di
Version:
cli สำหรับ react native ที่มีตัวอย่างโครงสร้างพื้นฐานพร้อมใช้งานประกอบไปด้วย package หลักๆ เช่น mobx,moment,lodash และรองรับภาษา javascript es6 และมี di สำหรับสลับ Store ที่จะติดต่อ api กับ fake mockup ที่สร้างขึ้นเอง ^^
28 lines (27 loc) • 513 B
JavaScript
const React = require("react-native");
const { Dimensions, Platform } = React;
const deviceHeight = Dimensions.get("window").height;
export default {
container: {
backgroundColor: "#fff"
},
imageContainer: {
flex: 1,
width: null,
height: null
},
logoContainer: {
flex: 1,
marginTop: deviceHeight / 8,
marginBottom: 30
},
text: {
color: "#D8D8D8",
bottom: 6,
marginTop: 5
},
btnLogin:{
margin: 15,
marginTop: 50
}
};