diff --git a/src/styles/Commons.tsx b/src/styles/Commons.tsx new file mode 100644 index 0000000..51f263c --- /dev/null +++ b/src/styles/Commons.tsx @@ -0,0 +1,23 @@ +import { StyleSheet } from "react-native"; + +export const containers = StyleSheet.create({ + fullScreenContentCentered: { + width: "100%", + height: "100%", + flex: 1, + alignItems: "center", + justifyContent: "center", + }, + containerFull: { + width: "100%", + height: "100%", + flex: 1, + }, +}); + +export const images = StyleSheet.create({ + cover: { + width: "100%", + height: "100%", + }, +});