From 7452c4fc77597f67dec31ef2c301906518318212 Mon Sep 17 00:00:00 2001 From: AlexVincent525 Date: Wed, 19 Feb 2020 22:13:28 +0800 Subject: [PATCH] :bug: Fix empty flag reverted in appbar. --- lib/widgets/fixed_appbar.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/widgets/fixed_appbar.dart b/lib/widgets/fixed_appbar.dart index 1c52b5aa..ba4e39ba 100644 --- a/lib/widgets/fixed_appbar.dart +++ b/lib/widgets/fixed_appbar.dart @@ -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, ],