Refactoring
Some checks failed
Build Linux App / build (push) Failing after 1m33s

This commit is contained in:
2026-02-23 10:02:23 -05:00
parent 21f1387fa8
commit 0c9eb8878d
57 changed files with 8179 additions and 1114 deletions

View File

@@ -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> {