We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5f0004 commit 56cc2cdCopy full SHA for 56cc2cd
lib/router/router.dart
@@ -178,13 +178,17 @@ GoRouter createRouter({
178
),
179
],
180
181
+ StatefulShellBranch(
182
+ routes: [
183
+ GoRoute(
184
+ path: Routes.settings,
185
+ name: Routes.settingsName,
186
+ builder: (context, state) => const SettingsPage(),
187
+ ),
188
+ ],
189
190
191
- GoRoute(
- path: Routes.settings,
- name: Routes.settingsName,
- builder: (context, state) => const SettingsPage(),
- ),
192
193
);
194
}
0 commit comments