31 lines
570 B
TypeScript
31 lines
570 B
TypeScript
import { StyleSheet } from "react-native";
|
|
|
|
export const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
backgroundColor: "white",
|
|
shadowColor: "#D1D9E6",
|
|
shadowOpacity: 1,
|
|
shadowOffset: {
|
|
width: 3,
|
|
height: 3,
|
|
},
|
|
elevation: 5,
|
|
},
|
|
columnContainer: {
|
|
flex: 1,
|
|
flexDirection: "column",
|
|
padding: 20,
|
|
justifyContent: "center",
|
|
},
|
|
rowContainer: {
|
|
flex: 1,
|
|
flexDirection: "row",
|
|
justifyContent: "space-around",
|
|
},
|
|
columnItem: {
|
|
flexDirection: "column",
|
|
alignItems: "center",
|
|
},
|
|
});
|