This commit is contained in:
@@ -74,6 +74,22 @@ class HomeRoute extends PageRouteInfo<void> {
|
||||
);
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [KnowledgeBasePage]
|
||||
class KnowledgeBaseRoute extends PageRouteInfo<void> {
|
||||
const KnowledgeBaseRoute({List<PageRouteInfo>? children})
|
||||
: super(KnowledgeBaseRoute.name, initialChildren: children);
|
||||
|
||||
static const String name = 'KnowledgeBaseRoute';
|
||||
|
||||
static PageInfo page = PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
return const KnowledgeBasePage();
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [PlanEditorPage]
|
||||
class PlanEditorRoute extends PageRouteInfo<PlanEditorRouteArgs> {
|
||||
@@ -116,6 +132,22 @@ class PlanEditorRouteArgs {
|
||||
}
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [SettingsPage]
|
||||
class SettingsRoute extends PageRouteInfo<void> {
|
||||
const SettingsRoute({List<PageRouteInfo>? children})
|
||||
: super(SettingsRoute.name, initialChildren: children);
|
||||
|
||||
static const String name = 'SettingsRoute';
|
||||
|
||||
static PageInfo page = PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
return const SettingsPage();
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [ShellPage]
|
||||
class ShellRoute extends PageRouteInfo<void> {
|
||||
@@ -148,6 +180,22 @@ class TrainingsRoute extends PageRouteInfo<void> {
|
||||
);
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [WelcomeScreen]
|
||||
class WelcomeRoute extends PageRouteInfo<void> {
|
||||
const WelcomeRoute({List<PageRouteInfo>? children})
|
||||
: super(WelcomeRoute.name, initialChildren: children);
|
||||
|
||||
static const String name = 'WelcomeRoute';
|
||||
|
||||
static PageInfo page = PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
return const WelcomeScreen();
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [WorkoutSessionPage]
|
||||
class WorkoutSessionRoute extends PageRouteInfo<WorkoutSessionRouteArgs> {
|
||||
|
||||
Reference in New Issue
Block a user