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)