feat(authentication): remove social sign-in buttons and add TODO for future implementation
feat(billing): update billing module routes to indicate feature not yet implemented feat(coverage): update coverage module routes to indicate feature not yet implemented feat(sign_up_form): set full width for create account button in sign-up form
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_modular/flutter_modular.dart';
|
||||
import 'package:krow_data_connect/krow_data_connect.dart';
|
||||
|
||||
import 'data/repositories_impl/billing_repository_impl.dart';
|
||||
import 'domain/repositories/billing_repository.dart';
|
||||
import 'domain/usecases/get_current_bill_amount.dart';
|
||||
@@ -8,7 +10,6 @@ import 'domain/usecases/get_pending_invoices.dart';
|
||||
import 'domain/usecases/get_savings_amount.dart';
|
||||
import 'domain/usecases/get_spending_breakdown.dart';
|
||||
import 'presentation/blocs/billing_bloc.dart';
|
||||
import 'presentation/pages/billing_page.dart';
|
||||
|
||||
/// Modular module for the billing feature.
|
||||
class BillingModule extends Module {
|
||||
@@ -46,6 +47,10 @@ class BillingModule extends Module {
|
||||
|
||||
@override
|
||||
void routes(RouteManager r) {
|
||||
r.child('/', child: (_) => const BillingPage());
|
||||
r.child("/", child: (_) => const SizedBox(
|
||||
child: Center(child: Text('Feature not yet implemented')),
|
||||
));
|
||||
/// TODO: FEATURE_NOT_YET_IMPLEMENTED
|
||||
// r.child('/', child: (_) => const BillingPage());
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user