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

19 lines
573 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 {
LoginState() {}
late TextEditingController userNameController = TextEditingController();
late TextEditingController passwordController = TextEditingController();
late TextEditingController meetingCodeController = TextEditingController();
late TextEditingController nickNameCodeController = TextEditingController();
/// 页面状态0账号1会议号
late RxInt pageState = 0.obs;
/// 是否勾选协议
late RxBool checkAgreementBool = false.obs;
}