UNPKG

create-native-di

Version:

cli สำหรับ react native ที่มีตัวอย่างโครงสร้างพื้นฐานพร้อมใช้งานประกอบไปด้วย package หลักๆ เช่น mobx,moment,lodash และรองรับภาษา javascript es6 และมี di สำหรับสลับ Store ที่จะติดต่อ api กับ fake mockup ที่สร้างขึ้นเอง ^^

37 lines (35 loc) 976 B
import variable from "./../variables/platform"; export default (variables = variable) => { const badgeTheme = { ".primary": { backgroundColor: variables.btnPrimaryBg }, ".warning": { backgroundColor: variables.btnWarningBg }, ".info": { backgroundColor: variables.btnInfoBg }, ".success": { backgroundColor: variables.btnSuccessBg }, ".danger": { backgroundColor: variables.btnDangerBg }, "NativeBase.Text": { color: variables.badgeColor, fontSize: variables.fontSizeBase, lineHeight: variables.lineHeight - 1, textAlign: "center", paddingHorizontal: 3 }, backgroundColor: variables.badgeBg, padding: variables.badgePadding, paddingHorizontal: 6, alignSelf: "flex-start", justifyContent: variables.platform === "ios" ? "center" : undefined, borderRadius: 13.5, height: 27 }; return badgeTheme; };