From 69ca6e681b5f90e1a3f184ab1e62fec52c410d30 Mon Sep 17 00:00:00 2001 From: Vincent Velociter Date: Thu, 11 Apr 2024 18:02:40 +0200 Subject: [PATCH] Remove double dashboard title on android --- lib/src/view/puzzle/dashboard_screen.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/view/puzzle/dashboard_screen.dart b/lib/src/view/puzzle/dashboard_screen.dart index 6558614247..5005b0be2f 100644 --- a/lib/src/view/puzzle/dashboard_screen.dart +++ b/lib/src/view/puzzle/dashboard_screen.dart @@ -38,7 +38,7 @@ class PuzzleDashboardScreen extends StatelessWidget { : Scaffold( body: _Body(user: user), appBar: AppBar( - title: Text(context.l10n.puzzlePuzzleDashboard), + title: const SizedBox.shrink(), actions: const [DaysSelector()], ), );