TF-1118 Apply new latest design forwarding

This commit is contained in:
dab246
2022-11-08 15:45:49 +07:00
committed by Dat H. Pham
parent 2402371ca3
commit eaa47b9cd7
31 changed files with 897 additions and 714 deletions
@@ -1,12 +1,10 @@
import 'package:get/get.dart';
import 'package:tmail_ui_user/features/mailbox_creator/domain/usecases/verify_name_interactor.dart';
import 'package:tmail_ui_user/features/manage_account/presentation/forward/forward_controller.dart';
class ForwardBindings extends Bindings {
@override
void dependencies() {
Get.lazyPut(() => VerifyNameInteractor());
Get.lazyPut(() => ForwardController(Get.find<VerifyNameInteractor>()));
Get.lazyPut(() => ForwardController());
}
}