WGShare.Mobile.Flutter/wgshare/lib/pages/loginPage/login_state.dart

21 lines
457 B
Dart
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import 'package:flutter/material.dart';
import 'package:get/get.dart';
class LoginState {
TextEditingController? userNameController;
TextEditingController? passwordController;
TextEditingController? meetingCodeController;
TextEditingController? nickNameCodeController;
LoginState() {
}
/// 页面状态0账号1会议号
late RxInt pageState = 0.obs;
/// 是否勾选协议
late RxBool checkAgreementBool = false.obs;
}