penambahan folder screens, styles dan navigation

This commit is contained in:
2025-06-26 12:14:55 +08:00
parent bff2a89903
commit cd35201e30
19 changed files with 236 additions and 193 deletions

55
styles/global-styles.ts Normal file
View File

@@ -0,0 +1,55 @@
import { StyleSheet } from "react-native";
import { MainColor } from "../constants/color-palet";
export const Styles = StyleSheet.create({
container: {
flex: 1,
paddingInline: 25,
paddingBlock: 10,
backgroundColor: MainColor.darkblue,
},
containerWithBackground: {
flex: 1,
paddingInline: 25,
paddingBlock: 10,
},
imageBackground: {
height: "100%",
width: "100%",
},
// AUTHENTICATION
authContainer: {
flex: 1,
justifyContent: "center",
},
authContainerTitle: {
justifyContent: "center",
alignItems: "center",
},
authTitle: {
fontSize: 27,
color: MainColor.yellow,
fontWeight: "bold",
},
authSubTitle: {
fontSize: 22,
color: MainColor.yellow,
fontWeight: "bold",
},
// TEXT & LABEL
textLabel: {
fontSize: 14,
color: MainColor.white,
fontWeight: "normal",
},
// HOME
homeContainer: {
flex: 1,
paddingInline: 25,
paddingBlock: 10,
backgroundColor: MainColor.darkblue,
},
});