17 lines
403 B
Dart
17 lines
403 B
Dart
import 'package:get/get.dart';
|
|
import 'package:wgshare/common/mixins/request_tool_mixin.dart';
|
|
|
|
import 'login_state.dart';
|
|
|
|
class LoginLogic extends GetxController with RequestToolMixin {
|
|
final LoginState state = LoginState();
|
|
|
|
@override
|
|
void dispose() {
|
|
super.dispose();
|
|
state.passwordFocus.dispose();
|
|
state.passwordController.dispose();
|
|
state.userNameController.dispose();
|
|
}
|
|
}
|