flutter/lib/utils/common.dart
2025-08-21 10:50:38 +08:00

17 lines
253 B
Dart

/// 封装公共方法
library;
import './storage.dart';
class Common {
/// 判断是否登录
static bool isLogin() {
return Storage.hasData('hasLogged');
}
/// 退出登录
static logout() {
Storage.clear();
}
}