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.
|
import 'package:flutter/material.dart';
|
|
//登录状态管理
|
|
class UserProvider extends ChangeNotifier{
|
|
|
|
|
|
bool _isSigned=false;
|
|
///用户是否登陆
|
|
get isSigned=>_isSigned;
|
|
|
|
///设置用户登陆
|
|
setisSigned (bool state){
|
|
_isSigned=state;
|
|
notifyListeners();
|
|
}
|
|
|
|
|
|
|
|
} |