UNPKG

ignite-jhipster

Version:

A React Native boilerplate for JHipster apps.

30 lines (27 loc) 586 B
import { StyleSheet } from 'react-native' import { ApplicationStyles, Colors } from '../../shared/themes/' export default StyleSheet.create({ ...ApplicationStyles.screen, container: { flex: 1, padding: 20 }, centerText: { textAlign: 'center', }, buttonText: { fontSize: 18, color: 'white', alignSelf: 'center' }, button: { height: 36, backgroundColor: Colors.jhipsterBlue, borderColor: Colors.jhipsterBlue, borderWidth: 1, borderRadius: 8, marginBottom: 10, alignSelf: 'stretch', justifyContent: 'center' } })