style.js
517 Bytes
import { StyleSheet } from 'react-native'
import { Colors } from 'react-native/Libraries/NewAppScreen'
const styles = StyleSheet.create({
scrollView: {
flex: 1,
backgroundColor: "#6E4DB3"
},
body: {
flex: 1
},
h1: {
fontWeight: '400',
textAlign: 'center',
fontSize: 40,
// paddingTop: 20,
paddingBottom: 20,
color: Colors.white
},
button: {
marginBottom: 20,
marginTop: 20
}
})
export { styles }