32 lines
586 B
JavaScript
32 lines
586 B
JavaScript
import { StyleSheet } from "react-native";
|
|
import { Row } from "native-base";
|
|
|
|
export default StyleSheet.create({
|
|
contentContainer__centered: {
|
|
justifyContent: "center",
|
|
flex: 1,
|
|
},
|
|
|
|
evenlySpacedRow: {
|
|
flexDirection: "row",
|
|
justifyContent: "space-evenly",
|
|
alignItems: "center",
|
|
},
|
|
|
|
swipe_view: {
|
|
flex: 1,
|
|
alignItems: "center",
|
|
justifyContent: "center",
|
|
width: 100,
|
|
marginTop: 5,
|
|
marginBottom: 5,
|
|
},
|
|
swipe_view_blue: {
|
|
backgroundColor: "dodgerblue",
|
|
},
|
|
swipe_text: {
|
|
textAlign: "center",
|
|
color: "white",
|
|
},
|
|
});
|