From c36c89765042abc861eccf037eb69e35ab4ca4d1 Mon Sep 17 00:00:00 2001 From: G Date: Wed, 24 Apr 2024 23:44:16 +0000 Subject: [PATCH] common style for common people --- src/styles/Commons.tsx | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/styles/Commons.tsx 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%", + }, +}); -- libgit2 0.27.1