Add full app source
Adds the Flutter inventory app source, cleaned up for a shared repo: generic package name, no hardcoded ERP endpoints (moved to gitignored local config), no dead auth code, no debug logging of session data.
This commit is contained in:
9
lib/controllers/simple_ui_controller.dart
Normal file
9
lib/controllers/simple_ui_controller.dart
Normal file
@@ -0,0 +1,9 @@
|
||||
import 'package:get/get.dart';
|
||||
|
||||
class SimpleUIController extends GetxController {
|
||||
RxBool isObscure = true.obs;
|
||||
|
||||
isObscureActive() {
|
||||
isObscure.value = !isObscure.value;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user