react-native-template-allmax
Version:
React native template with navigation, redux, redux-saga, eslit, flow, reactotron
28 lines (24 loc) • 516 B
JavaScript
// @flow
import { StyleSheet } from 'react-native';
import { colors } from '~/global';
export const styles = StyleSheet.create({
contentContainer: {
paddingTop: 16,
paddingHorizontal: 8,
alignItems: 'center',
},
countRow: {
marginTop: 8,
flexDirection: 'row',
alignItems: 'center',
},
countInput: {
marginLeft: 8,
width: 52,
height: 44,
borderColor: colors.black,
borderWidth: StyleSheet.hairlineWidth,
borderRadius: 4,
paddingHorizontal: 8,
},
});