first commit

This commit is contained in:
2025-06-23 10:18:59 +08:00
parent 20d2053276
commit ba2dc1211f
32 changed files with 15692 additions and 0 deletions

9
app/+not-found.tsx Normal file
View File

@@ -0,0 +1,9 @@
import { Text, View } from "react-native";
export default function NotFoundScreen() {
return (
<View>
<Text>Not Found</Text>
</View>
)
}

5
app/_layout.tsx Normal file
View File

@@ -0,0 +1,5 @@
import { Stack } from "expo-router";
export default function RootLayout() {
return <Stack />;
}

21
app/background.tsx Normal file
View File

@@ -0,0 +1,21 @@
import { Text, View } from "react-native";
import { useNavigation } from "expo-router";
import { useEffect } from "react";
export default function Background() {
const navigation = useNavigation();
useEffect(() => {
navigation.setOptions({
headerShown: true,
headerTitle: "Home",
});
}, [navigation]);
return (
<View>
<Text>Background</Text>
</View>
);
}

36
app/header-button.tsx Normal file
View File

@@ -0,0 +1,36 @@
import { Stack } from "expo-router";
import { Button, Text, Image } from "react-native";
import { useState } from "react";
import { styles } from "@/constants/styles";
function LogoTitle(props: { children?: React.ReactNode }) {
return (
<Image
style={styles.image}
source={{ uri: "https://reactnative.dev/img/tiny_logo.png" }}
/>
);
}
export default function Home() {
const [count, setCount] = useState(0);
return (
<>
<Stack.Screen
options={{
headerTitle: (props) => <LogoTitle {...props} />,
headerRight: () => (
<Button
onPress={() => setCount((c) => c + 1)}
title="Update count"
/>
),
}}
/>
<Text>Count: {count}</Text>
</>
);
}

126
app/index.tsx Normal file
View File

@@ -0,0 +1,126 @@
/* eslint-disable @typescript-eslint/no-unused-vars */
import ButtonCustom from "@/components/Button/ButtonCustom";
import { TextInputCustom } from "@/components/TextInput/TextInputCustom";
import { MainColor } from "@/constants/color-palet";
import { styles } from "@/constants/styles";
import { useNavigation } from "expo-router";
import { useEffect, useState } from "react";
import {
ImageBackground,
ScrollView,
StyleSheet,
Text,
View,
} from "react-native";
import { SafeAreaView } from "react-native-safe-area-context";
export default function Home() {
const navigation = useNavigation();
const assetBackground = require("../assets/images/main-background.png");
const [phone, setPhone] = useState("");
const [price, setPrice] = useState("");
useEffect(() => {
navigation.setOptions({
headerShown: false,
});
}, [navigation]);
return (
<SafeAreaView
edges={[]}
style={{
flex: 1,
// paddingTop: StatusBar.currentHeight,
}}
>
<ScrollView contentContainerStyle={{ flexGrow: 2 }}>
<ImageBackground
source={assetBackground}
resizeMode="cover"
style={styles.imageBackground}
>
<View style={styles.container}>
<View
style={{
flex: 1,
justifyContent: "center",
height: "100%",
}}
>
<View>
<View style={stylesHome.container}>
{/* Teks "WELCOME TO" */}
<Text style={stylesHome.welcomeTo}>WELCOME TO</Text>
{/* Spacing antara "WELCOME TO" dan "HIPMI BADUNG APPS" */}
<View style={stylesHome.spacing} />
{/* Teks "HIPMI BADUNG APPS" */}
<Text style={stylesHome.hipmiBadungApps}>
HIPMI BADUNG APPS
</Text>
{/* Spacing antara "HIPMI BADUNG APPS" dan "powered by muku.id" */}
<View style={stylesHome.spacing} />
</View>
{/* Teks "powered by muku.id" */}
<Text style={stylesHome.poweredBy}>powered by muku.id</Text>
</View>
{/* Input dengan prefix teks */}
<TextInputCustom
label="Nomor Telepon"
placeholder="Masukkan nomor"
value={phone}
onChangeText={setPhone}
iconLeft="+62"
keyboardType="phone-pad"
/>
<ButtonCustom
title="Login"
backgroundColor={MainColor.yellow}
textColor={MainColor.black}
radius={10}
onPress={() => alert("Pressed!")}
// iconLeft={<MaterialIcons name="login" size={20} color="#000" />}
/>
</View>
</View>
</ImageBackground>
</ScrollView>
</SafeAreaView>
);
}
const stylesHome = StyleSheet.create({
container: {
// backgroundColor: "#0A192F", // Warna latar belakang biru tua
justifyContent: "center",
alignItems: "center",
marginBottom: 50,
},
welcomeTo: {
fontSize: 22,
color: MainColor.yellow, // Warna kuning
fontWeight: "bold",
},
hipmiBadungApps: {
fontSize: 27,
color: MainColor.yellow, // Warna kuning
fontWeight: "bold",
},
spacing: {
height: 5, // Jarak antar teks
},
poweredBy: {
position: "absolute",
bottom: 30, // sesuaikan jarak dari bawah
right: 20, // sesuaikan jarak dari kanan
fontSize: 10,
fontWeight: "thin",
fontStyle: "italic",
color: MainColor.white, // Warna putih
},
});

22
app/new-detail.tsx Normal file
View File

@@ -0,0 +1,22 @@
import { styles } from "@/constants/styles";
import { useRouter, useLocalSearchParams, Stack } from "expo-router";
import { Text, View } from "react-native";
export default function NewDetail() {
const router = useRouter();
const params = useLocalSearchParams();
return (
<View style={styles.container}>
<Stack.Screen
options={{
title: params.name as string,
}}
/>
<Text onPress={() => router.setParams({ name: "Bagas" })}>
Update title
</Text>
<Text onPress={() => router.back()}>Back</Text>
</View>
);
}

View File

@@ -0,0 +1,26 @@
import { styles } from "@/constants/styles";
import { Stack, useLocalSearchParams, useRouter } from "expo-router";
import { View, Text } from "react-native";
export default function Details() {
const router = useRouter();
const params = useLocalSearchParams();
return (
<View style={styles.container}>
<Stack.Screen
options={{
title: params.name as string,
}}
/>
<Text
onPress={() => {
router.setParams({ name: "Updated" });
}}
>
Update the title
</Text>
</View>
);
}