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.
9 lines
181 B
Dart
9 lines
181 B
Dart
import 'package:get/get.dart';
|
|
|
|
class SimpleUIController extends GetxController {
|
|
RxBool isObscure = true.obs;
|
|
|
|
isObscureActive() {
|
|
isObscure.value = !isObscure.value;
|
|
}
|
|
} |