Commit bdcbd17

derdilla <82763757+derdilla@users.noreply.github.com>
2025-07-11 17:03:33
Move statistics page time interval picker to footer buttons (#573)
1 parent dac6a64
Changed files (1)
app
app/lib/screens/statistics_screen.dart
@@ -60,11 +60,11 @@ class _StatisticsScreenState extends State<StatisticsScreen> {
           );
         },
       ),
-      bottomNavigationBar: Container(
-        height: 70,
-        margin: const EdgeInsets.only(top: 15, bottom: 5),
+      persistentFooterButtons: [Container(
+        height: 76.0,
+        margin: const EdgeInsets.only(top: 8.0, bottom: 6.0),
         child: const IntervalPicker(type: IntervalStoreManagerLocation.statsPage,),
-      ),
+      )],
     );
   }