From 44707bf0644d63cb17db5d76498d9329731e55e3 Mon Sep 17 00:00:00 2001 From: stopflock Date: Thu, 21 Aug 2025 18:54:07 -0500 Subject: [PATCH] fix download dialog --- lib/screens/home_screen.dart | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/lib/screens/home_screen.dart b/lib/screens/home_screen.dart index 4a56a5e..81c9f8d 100644 --- a/lib/screens/home_screen.dart +++ b/lib/screens/home_screen.dart @@ -276,9 +276,15 @@ class _DownloadAreaDialogState extends State { mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ const Text('Storage estimate:'), - Text(_mbEstimate == null - ? '…' - : '${_tileCount} tiles, ${_mbEstimate!.toStringAsFixed(1)} MB'), + Expanded( + child: Text( + _mbEstimate == null + ? '…' + : '${_tileCount} tiles, ${_mbEstimate!.toStringAsFixed(1)} MB', + textAlign: TextAlign.end, + style: const TextStyle(fontSize: 14), + ), + ), ], ), if (_minZoom != null)