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

@@ -16,8 +16,14 @@ class GetStartedPage extends StatelessWidget {
const GetStartedPage({super.key});
/// On sign up pressed callback.
void onSignUpPressed() {
Modular.to.pushPhoneVerification(AuthMode.signup);
void onSignUpPressed(BuildContext context) {
/// TODO: FEATURE_NOT_YET_IMPLEMENTED
/// Replace with actual sign up flow when implemented
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(
content: Text('Sign Up feature not yet implemented.'),
),
);
}
/// On login pressed callback.
@@ -48,7 +54,7 @@ class GetStartedPage extends StatelessWidget {
// Actions
GetStartedActions(
onSignUpPressed: onSignUpPressed,
onSignUpPressed: () => onSignUpPressed(context),
onLoginPressed: onLoginPressed,
),