From 8e9e40b26477cb3be77b447658652e0514ac3b94 Mon Sep 17 00:00:00 2001 From: Sivan Ratson <89018301+Sivan22@users.noreply.github.com> Date: Sun, 1 Dec 2024 00:20:27 +0200 Subject: [PATCH] fix: small view issues --- lib/screens/empty_library_screen.dart | 27 +++++++++++---------------- 1 file changed, 11 insertions(+), 16 deletions(-) diff --git a/lib/screens/empty_library_screen.dart b/lib/screens/empty_library_screen.dart index 47db70fd..49159e7b 100644 --- a/lib/screens/empty_library_screen.dart +++ b/lib/screens/empty_library_screen.dart @@ -391,15 +391,11 @@ class _EmptyLibraryScreenState extends State { child: Column( mainAxisAlignment: MainAxisAlignment.center, children: [ - if (Platform.isAndroid || Platform.isIOS) - const Text( - 'לא נמצאה ספרייה, יש להוריד את הספרייה - נדרש חיבור אינטרנט.\n גודל הורדה: 1200MB') - else - const Text( - 'לא נמצאה ספרייה בנתיב המצוין', - style: TextStyle(fontSize: 24, fontWeight: FontWeight.bold), - textAlign: TextAlign.center, - ), + const Text( + 'לא נמצאה ספרייה', + style: TextStyle(fontSize: 24, fontWeight: FontWeight.bold), + textAlign: TextAlign.center, + ), if (!Platform.isAndroid && !Platform.isIOS) const SizedBox(height: 32), if (_selectedPath != null) @@ -423,11 +419,10 @@ class _EmptyLibraryScreenState extends State { onPressed: _isDownloading ? null : _pickAndExtractZipFile, child: const Text('בחר קובץ ZIP מהמכשיר'), ), - if (!Platform.isAndroid && !Platform.isIOS) - const Text( - 'או', - style: TextStyle(fontSize: 18), - ), + const Text( + 'או', + style: TextStyle(fontSize: 18), + ), const SizedBox(height: 32), if (_isDownloading) ...[ Column( @@ -446,14 +441,14 @@ class _EmptyLibraryScreenState extends State { foregroundColor: Colors.white, ), icon: const Icon(Icons.stop), - label: Text(_isCancelling ? 'מבטל...' : 'בטל הורדה'), + label: Text(_isCancelling ? 'מבטל...' : 'בטל'), ), ], ), ] else ElevatedButton( onPressed: _downloadAndExtractLibrary, - child: const Text(' הורד את הספרייה מהאינטרנט'), + child: const Text('הורד את הספרייה מהאינטרנט (1.2GB)'), ), ], ),