You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

33 line
775 B

  1. import 'dart:async';
  2. import 'package:flutter/material.dart';
  3. import 'package:flutter/services.dart';
  4. import 'package:get/get.dart';
  5. /// @description:
  6. /// @author
  7. /// @date: 2025-01-11 17:25:10
  8. class LoginState {
  9. TextEditingController phoneContr = TextEditingController();
  10. TextEditingController pinContr = TextEditingController();
  11. TextEditingController emailContr = TextEditingController();
  12. MethodChannel methodChannel = MethodChannel('methodChannel');
  13. FocusNode phoneNode = FocusNode();
  14. FocusNode emailNode = FocusNode();
  15. FocusNode pinNode = FocusNode();
  16. // RxString phoneNumber = ''.obs;
  17. RxString countryCode = '86'.obs;
  18. RxBool protocolCheck = false.obs;
  19. Timer? pinCodeTimer;
  20. RxInt countDown = 60.obs;
  21. RxBool isWechatLogin = false.obs;
  22. }