1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-08 22:09:06 +00:00

Add unawaited_futures (#1148)

This commit is contained in:
Brett Morgan
2022-04-27 09:24:19 +10:00
committed by GitHub
parent 802026f4ea
commit f998c9577e
12 changed files with 26 additions and 23 deletions

View File

@@ -79,7 +79,7 @@ class _BookstoreNavigatorState extends State<BookstoreNavigator> {
var signedIn = await authState.signIn(
credentials.username, credentials.password);
if (signedIn) {
routeState.go('/books/popular');
await routeState.go('/books/popular');
}
},
),