Penambahan metode login dengan menerapkan EULA di awal

Add:
app/eula.tsx
screens/Authentication/EULAView.tsx

Fix:
- context/AuthContext.tsx
- screens/Authentication/RegisterView.tsx
- screens/RootLayout/AppRoot.tsx
- service/api-config.ts

### No Issue
This commit is contained in:
2026-01-09 17:44:13 +08:00
parent 33cd47aaed
commit ea3fbdc541
7 changed files with 357 additions and 35 deletions

9
app/eula.tsx Normal file
View File

@@ -0,0 +1,9 @@
import EULAView from "@/screens/Authentication/EULAView";
export default function EULA() {
return (
<>
<EULAView />
</>
);
}