add login and input

This commit is contained in:
2025-10-22 21:22:59 +02:00
parent 2f844fcaef
commit ee655328e6
9 changed files with 344 additions and 34 deletions

View File

@@ -0,0 +1,18 @@
import 'package:get/get.dart';
import '../controllers/input_controller.dart';
class InputBinding extends Bindings {
@override
void dependencies() {
Get.lazyPut<InputController>(() => InputController());
}
}
/// Alternative: Permanent Binding für App-weite Nutzung
class InputPermanentBinding extends Bindings {
@override
void dependencies() {
// Permanent - Controller bleibt im Speicher
Get.put<InputController>(InputController(), permanent: true);
}
}