Initial commit: Flutter Weight Tracker Web

This commit is contained in:
2026-02-24 21:03:54 +01:00
commit 63d1be6d9c
23 changed files with 2057 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
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());
}
}