TF-2101 Add email_recovery dialog

(cherry picked from commit a62d5c7e2c4558ef932b2bae753652a4554bd5a4)
This commit is contained in:
hieubt
2023-12-20 23:49:11 +07:00
committed by Dat H. Pham
parent f52467785b
commit 25cc14a188
4 changed files with 136 additions and 0 deletions
@@ -0,0 +1,9 @@
import 'package:get/get.dart';
import 'package:tmail_ui_user/features/email_recovery/presentation/email_recovery_controller.dart';
class EmailRecoveryBindings extends Bindings {
@override
void dependencies() {
Get.lazyPut(() => EmailRecoveryController());
}
}