From b819fee2081d69d13e76b7bb2aa0646d08d111e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leon=20B=C3=B6sche?= Date: Sun, 25 Jan 2026 01:16:38 +0100 Subject: [PATCH] Fix download button: show only download icon without text --- b0esche_cloud/lib/pages/public_file_viewer.dart | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/b0esche_cloud/lib/pages/public_file_viewer.dart b/b0esche_cloud/lib/pages/public_file_viewer.dart index 454ead4..c8061a2 100644 --- a/b0esche_cloud/lib/pages/public_file_viewer.dart +++ b/b0esche_cloud/lib/pages/public_file_viewer.dart @@ -260,14 +260,7 @@ class _PublicFileViewerState extends State { padding: const EdgeInsets.only(left: 16, top: 4), child: ModernGlassButton( onPressed: _downloadFile, - child: const Row( - mainAxisSize: MainAxisSize.min, - children: [ - Icon(Icons.download, size: 18), - SizedBox(width: 8), - Text('Download'), - ], - ), + child: const Icon(Icons.download, size: 18), ), ) : null,