24 lines
956 B
Dart
24 lines
956 B
Dart
import 'package:get/get.dart';
|
|
|
|
import '../../pages/gaslist/gaslist_controller.dart';
|
|
import '../../pages/graph/graph_controller.dart';
|
|
import '../../pages/login/login_controller.dart';
|
|
import '../../pages/tank/tank_controller.dart';
|
|
import '../../pages/tanklist/tanklist_controller.dart';
|
|
|
|
|
|
|
|
class SampleBindings extends Bindings {
|
|
@override
|
|
void dependencies() {
|
|
// Define your dependencies here
|
|
Get.lazyPut<LoginController>(() => LoginController());
|
|
Get.lazyPut<TankController>(() => TankController());
|
|
Get.lazyPut<TanklistController>(() => TanklistController());
|
|
Get.lazyPut<GraphController>(() => GraphController());
|
|
Get.lazyPut<GaslistController>(() => GaslistController());
|
|
// Get.lazyPut<TrackingController>(() => TrackingController(AuthRepository(AppWriteProvider())));
|
|
// Get.lazyPut<MapController>(() => MapController(AuthRepository(AppWriteProvider()), LocationRepository(LocationProvider())));
|
|
}
|
|
|
|
} |