20 lines
498 B
Dart
20 lines
498 B
Dart
import 'package:flutter/material.dart';
|
||
import 'package:get/get.dart';
|
||
|
||
class LoginState {
|
||
|
||
LoginState() {}
|
||
|
||
late TextEditingController userNameController = TextEditingController();
|
||
late TextEditingController passwordController = TextEditingController();
|
||
late FocusNode passwordFocus = FocusNode();
|
||
|
||
late RxBool canLogin = true.obs;
|
||
|
||
/// 页面状态,0:账号,1:会议号
|
||
late RxInt pageState = 0.obs;
|
||
|
||
/// 是否勾选协议
|
||
late RxBool checkAgreementBool = false.obs;
|
||
}
|