TF-1118 Apply new design for Forwarding on web

This commit is contained in:
dab246
2022-11-04 00:33:59 +07:00
committed by Dat H. Pham
parent bd78732fe9
commit b153de5c90
22 changed files with 936 additions and 414 deletions
@@ -1,10 +1,12 @@
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(() => ForwardController());
Get.lazyPut(() => VerifyNameInteractor());
Get.lazyPut(() => ForwardController(Get.find<VerifyNameInteractor>()));
}
}