Skip to content

Commit

Permalink
fix: small view issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Sivan22 committed Nov 30, 2024
1 parent 98a064a commit 8e9e40b
Showing 1 changed file with 11 additions and 16 deletions.
27 changes: 11 additions & 16 deletions lib/screens/empty_library_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -391,15 +391,11 @@ class _EmptyLibraryScreenState extends State<EmptyLibraryScreen> {
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)
Expand All @@ -423,11 +419,10 @@ class _EmptyLibraryScreenState extends State<EmptyLibraryScreen> {
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(
Expand All @@ -446,14 +441,14 @@ class _EmptyLibraryScreenState extends State<EmptyLibraryScreen> {
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)'),
),
],
),
Expand Down

0 comments on commit 8e9e40b

Please sign in to comment.