UNPKG

create-expo-cljs-app

Version:

Create a react native application with Expo and Shadow-CLJS!

60 lines (54 loc) 1.77 kB
/** * Copyright (c) Nicolas Gallagher. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @noflow */ export const STYLE_ELEMENT_ID = 'react-native-stylesheet'; export const STYLE_GROUPS = { reset: 0, modality: 0.1, classicReset: 0.5, classic: 1, atomic: 2.2, custom: { borderColor: 2, borderRadius: 2, borderStyle: 2, borderWidth: 2, display: 2, flex: 2, margin: 2, overflow: 2, overscrollBehavior: 2, padding: 2, marginHorizontal: 2.1, marginVertical: 2.1, paddingHorizontal: 2.1, paddingVertical: 2.1 } }; export const STYLE_SHORT_FORM_EXPANSIONS = { borderColor: ['borderTopColor', 'borderRightColor', 'borderBottomColor', 'borderLeftColor'], borderRadius: [ 'borderTopLeftRadius', 'borderTopRightRadius', 'borderBottomRightRadius', 'borderBottomLeftRadius' ], borderStyle: ['borderTopStyle', 'borderRightStyle', 'borderBottomStyle', 'borderLeftStyle'], borderWidth: ['borderTopWidth', 'borderRightWidth', 'borderBottomWidth', 'borderLeftWidth'], margin: ['marginTop', 'marginRight', 'marginBottom', 'marginLeft'], marginHorizontal: ['marginRight', 'marginLeft'], marginVertical: ['marginTop', 'marginBottom'], overflow: ['overflowX', 'overflowY'], overscrollBehavior: ['overscrollBehaviorX', 'overscrollBehaviorY'], padding: ['paddingTop', 'paddingRight', 'paddingBottom', 'paddingLeft'], paddingHorizontal: ['paddingRight', 'paddingLeft'], paddingVertical: ['paddingTop', 'paddingBottom'] }; export const MONOSPACE_FONT_STACK = 'monospace,monospace'; export const SYSTEM_FONT_STACK = '-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif';