import 'package:get/get.dart'; import '../../pages/login/login_controller.dart'; import '../../pages/tank/tank_controller.dart'; class SampleBindings extends Bindings { @override void dependencies() { // Define your dependencies here Get.lazyPut(() => LoginController()); Get.lazyPut(() => TankController()); // Get.lazyPut(() => TanklistController(AuthRepository(AppWriteProvider()))); // Get.lazyPut(() => GraphController(AuthRepository(AppWriteProvider()))); // Get.lazyPut(() => TrackingController(AuthRepository(AppWriteProvider()))); // Get.lazyPut(() => MapController(AuthRepository(AppWriteProvider()), LocationRepository(LocationProvider()))); } }