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

This reverts commit 8f8c6ff2d2.
This commit is contained in:
Achintha Isuru
2026-01-24 15:36:09 -05:00
parent 8f8c6ff2d2
commit 5039743c03
5 changed files with 19 additions and 48 deletions

View File

@@ -23,19 +23,6 @@ class RapidOrderView extends StatelessWidget {
return BlocBuilder<RapidOrderBloc, RapidOrderState>(
builder: (BuildContext context, RapidOrderState state) {
/// TODO: FEATURE_NOT_YET_IMPLEMENTED
return Scaffold(
appBar: UiAppBar(
title: labels.title,
showBackButton: true,
onLeadingPressed: () => Modular.to.pop(),
),
body: const SizedBox(
child: Center(
child: Text('Rapid Order Success View Not Yet Implemented'),
),
),
);
if (state is RapidOrderSuccess) {
return RapidOrderSuccessView(
title: labels.success_title,