Skip to content

Commit

Permalink
🐛 Fix empty flag reverted in appbar.
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexV525 committed Feb 19, 2020
1 parent 09f63c0 commit 7452c4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/widgets/fixed_appbar.dart
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class FixedAppBar extends StatelessWidget {
),
if (automaticallyImplyLeading &&
Navigator.of(context).canPop() &&
(actions?.isEmpty ?? false))
(actions?.isEmpty ?? true))
SizedBox(width: 48.0),
if (actions?.isNotEmpty ?? false) ...actions,
],
Expand Down

0 comments on commit 7452c4f

Please sign in to comment.