fix/no ui update after login
This commit is contained in:
parent
bc80e10775
commit
e2d3720728
@ -48,7 +48,9 @@ class _HomePageState extends State<HomePage> {
|
|||||||
|
|
||||||
_isLoggedIn(BuildContext context) async {
|
_isLoggedIn(BuildContext context) async {
|
||||||
bool logged = await vm.isLoggedIn(context);
|
bool logged = await vm.isLoggedIn(context);
|
||||||
_loggedin = logged;
|
setState(() {
|
||||||
|
_loggedin = logged;
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
void _setLoading(bool loading) {
|
void _setLoading(bool loading) {
|
||||||
@ -137,9 +139,10 @@ class _HomePageState extends State<HomePage> {
|
|||||||
),
|
),
|
||||||
BottomNavigationItem(
|
BottomNavigationItem(
|
||||||
onPressed: () async {
|
onPressed: () async {
|
||||||
await showLogin(context);
|
bool res = await showLogin(context);
|
||||||
setState(() {
|
setState(() {
|
||||||
vm.isLoggedIn(context);
|
_loggedin = res;
|
||||||
|
// vm.isLoggedIn(context);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
icon: Icons.login,
|
icon: Icons.login,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user