chore: Update layout headers and iOS build config

- Update waiting-room header to use AppHeader component
- Update profile create header with 'Buat Profil' title
- Update iOS Xcode project with MapLibre signature workaround
- Add iOS workspace Package.resolved

Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
This commit is contained in:
2026-04-04 13:01:51 +08:00
parent 3382c16cdb
commit 76759cc547
4 changed files with 55 additions and 3 deletions

View File

@@ -21,8 +21,9 @@ export default function UserLayout() {
<Stack.Screen
name="waiting-room"
options={{
title: "Waiting Room",
headerBackVisible: false,
// title: "Waiting Room",
// headerBackVisible: false,
header: () => <AppHeader title="Waiting Room" showBack={false} />,
}}
/>

View File

@@ -23,7 +23,7 @@ export default function ProfileLayout() {
/>
<Stack.Screen
name="create"
options={{ headerBackVisible: false }}
options={{ header: () => <AppHeader title="Buat Profil" showBack={false} /> }}
/>
<Stack.Screen