@ozanmanav/react-native-boilerplate-ts
Version:
TheCodingMachine React Native Boilerplate With Typescript
30 lines (28 loc) • 682 B
text/typescript
/**
* This file defines the base application styles.
*
* Use it to define generic component styles (e.g. the default text styles, default button styles...).
*/
import { Colors } from './Variables'
import { StyleSheet } from 'react-native'
export default StyleSheet.create({
button: {
backgroundColor: Colors.primary,
},
backgroundPrimary: {
backgroundColor: Colors.primary,
},
backgroundReset: {
backgroundColor: Colors.transparent,
},
textInput: {
borderWidth: 1,
borderColor: Colors.text,
backgroundColor: Colors.white,
color: Colors.text,
minHeight: 50,
textAlign: 'center',
marginTop: 10,
marginBottom: 10,
},
})