- Migrate all navigation calls from magic strings to centralized href helpers - Extract inline device registration logic into useRegisterPushDevice hook - Remove unused terms and privacy policy routes from profile stack - Add hrefTradeDetail helper for trade detail navigation - Restore routePayloadCache.stashSystemMessage for group request/invite handling - Change desktop shell tab navigation from replace to push
27 lines
793 B
TypeScript
27 lines
793 B
TypeScript
import { Stack } from 'expo-router';
|
|
|
|
export default function ProfileStackLayout() {
|
|
return (
|
|
<Stack
|
|
screenOptions={{
|
|
headerShown: false,
|
|
}}
|
|
>
|
|
<Stack.Screen name="index" />
|
|
<Stack.Screen name="settings" />
|
|
<Stack.Screen name="edit-profile" />
|
|
<Stack.Screen name="account-security" />
|
|
<Stack.Screen name="my-posts" />
|
|
<Stack.Screen name="bookmarks" />
|
|
<Stack.Screen name="notification-settings" />
|
|
<Stack.Screen name="blocked-users" />
|
|
<Stack.Screen name="chat-settings" />
|
|
<Stack.Screen name="about" />
|
|
<Stack.Screen name="verification" />
|
|
<Stack.Screen name="data-storage" />
|
|
<Stack.Screen name="privacy-settings" />
|
|
<Stack.Screen name="account-deletion" />
|
|
</Stack>
|
|
);
|
|
}
|