You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
492 B
22 lines
492 B
import { StyleSheet } from "react-native";
|
|
|
|
export default StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
backgroundColor: '#45444E',
|
|
flexDirection: "column",
|
|
justifyContent: "flex-start",
|
|
alignItems: "center",
|
|
},
|
|
bodyStart: {
|
|
flex: 1,
|
|
flexDirection: 'column',
|
|
width: '100%',
|
|
},
|
|
bodyCenter: {
|
|
flex: 1,
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
width: '100%',
|
|
},
|
|
}); |