diff --git a/src/styles/Commons.tsx b/src/styles/Commons.tsx index 3283300..48013a9 100644 --- a/src/styles/Commons.tsx +++ b/src/styles/Commons.tsx @@ -20,7 +20,20 @@ export const containers = StyleSheet.create({ export const images = StyleSheet.create({ cover: { + flex: 1, + width: "100%", + height: "100%", + resizeMode: "cover", + }, + background: { + flex: 1, + resizeMode: "cover", + justifyContent: "center", + }, + contain: { + flex: 1, width: "100%", height: "100%", + resizeMode: "contain", }, });