fist getx sample with login and .env

This commit is contained in:
2025-10-31 23:23:03 +01:00
parent 45ea3ffa3f
commit 634df4ac6f
18 changed files with 636 additions and 177 deletions

View File

@@ -0,0 +1,9 @@
import 'package:get/get.dart';
import '../../controllers/login_controller.dart';
class LoginBinding extends Bindings {
@override
void dependencies() {
Get.lazyPut<LoginController>(() => LoginController());
}
}