Skip to content

Commit 2af7489

Browse files
authored
Add back button to onboarding flow (#128)
1 parent 0e1725c commit 2af7489

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

packages/mobile-app/app/onboarding/_layout.tsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default function OnboardingLayout() {
44
return (
55
<Stack
66
screenOptions={{
7-
headerBackVisible: false,
7+
headerBackTitle: "Back",
88
}}
99
>
1010
<Stack.Screen
@@ -37,6 +37,12 @@ export default function OnboardingLayout() {
3737
title: "Import File",
3838
}}
3939
/>
40+
<Stack.Screen
41+
name="import-mnemonic"
42+
options={{
43+
title: "Import Mnemonic",
44+
}}
45+
/>
4046
</Stack>
4147
);
4248
}

0 commit comments

Comments
 (0)