diff --git a/lib/src/widget/app_bar.dart b/lib/src/widget/app_bar.dart index 75768744..5cb22cf5 100644 --- a/lib/src/widget/app_bar.dart +++ b/lib/src/widget/app_bar.dart @@ -114,6 +114,8 @@ class NeumorphicAppBar extends StatefulWidget implements PreferredSizeWidget { case TargetPlatform.iOS: case TargetPlatform.macOS: return actions == null || actions!.length < 2; + default: + return false; } } }