Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanRory committed Jul 12, 2021
1 parent da58dcd commit d13e3f8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions lib/router.dart
Original file line number Diff line number Diff line change
Expand Up @@ -260,9 +260,10 @@ class Router {
child: WalletListPage()));

case Routes.auth:
return MaterialPageRoute<void>(
return PageRouteBuilder<void>(
fullscreenDialog: true,
builder: (_) => Provider(
transitionDuration: Duration(milliseconds: 0),
pageBuilder: (_, __, ___) => Provider(
create: (_) => AuthStore(
sharedPreferences: sharedPreferences,
userService: userService,
Expand Down
2 changes: 1 addition & 1 deletion lib/src/screens/seed/seed_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class SeedPage extends BasePage {
padding: EdgeInsets.only(bottom: 20.0),
margin: EdgeInsets.only(bottom: 10.0),
child: Text(
walletSeedStore.name,
walletSeedStore.name ?? '',
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 18.0,
Expand Down

0 comments on commit d13e3f8

Please sign in to comment.