Add: service api
-  service/
- app.config.js
- app.json.backup

Package:
- react-native-dotenv
- expo-module-scripts

### No Issue
This commit is contained in:
2025-08-19 11:07:42 +08:00
parent 0b6c360500
commit a4825343ba
14 changed files with 5033 additions and 92 deletions

View File

@@ -33,6 +33,13 @@ export default function UserLayout() {
}}
/>
<Stack.Screen
name="waiting-room"
options={{
title: "Waiting Room",
}}
/>
{/* ========== Profile Section ========= */}
<Stack.Screen
name="profile"

View File

@@ -0,0 +1,13 @@
import { InformationBox, ViewWrapper } from "@/components";
export default function WaitingRoom() {
return (
<>
<ViewWrapper>
<InformationBox
text="Permohonan akses Anda sedang dalam proses verifikasi oleh admin. Harap tunggu, Anda akan menerima pemberitahuan melalui Whatsapp setelah disetujui."
/>
</ViewWrapper>
</>
);
}