Initial commit

This commit is contained in:
2026-01-13 22:09:40 +01:00
commit cc849be7c4
139 changed files with 5445 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import 'package:get/get.dart';
import '../controllers/home_controller.dart';
class SampleBindings extends Bindings {
@override
void dependencies() {
// Define your dependencies here no permanent Binding
Get.lazyPut<HomeController>(() => HomeController());
}
}