feat: Add placeholder for unimplemented features in Get Started, Home, and Profile modules

feat: Add placeholder for Rapid Order success view and comment out Rapid action card
This commit is contained in:
Achintha Isuru
2026-01-24 15:06:40 -05:00
parent a38afb1940
commit 8f8c6ff2d2
5 changed files with 48 additions and 19 deletions

View File

@@ -50,6 +50,11 @@ class StaffProfileModule extends Module {
@override
void routes(RouteManager r) {
r.child('/', child: (BuildContext context) => const StaffProfilePage());
/// TODO: FEATURE_NOT_YET_IMPLEMENTED
r.child('/', child: (BuildContext context) => const SizedBox(
child: Center(
child: Text('Profile Feature Not Yet Implemented'),
),
));
}
}