12 lines
325 B
Dart
12 lines
325 B
Dart
import 'package:get/get.dart';
|
||
|
||
class AuthService extends GetxService {
|
||
static AuthService get to => Get.find<AuthService>();
|
||
|
||
/// 供外部使用的,判断是否登录的状态
|
||
get isUserLogin => isLogin.value;
|
||
|
||
/// 登录状态记录,可监听的,这样ever才能监听到
|
||
final RxBool isLogin = false.obs;
|
||
}
|