Skip to content

Commit

Permalink
Update import_export_data.dart
Browse files Browse the repository at this point in the history
  • Loading branch information
KuznetsovNick committed Dec 12, 2024
1 parent 674292a commit 78433f1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@ class FileHandlerWidget extends StatelessWidget {
context.read<SettingsBloc>().add(ImportFilesEvent());
},
icon: const Icon(Icons.download),
label: const Text('Импорт данных'),
label: const Text('Экспорт данных'),
),
ElevatedButton.icon(
onPressed: () => _handleFileExport(context),
icon: const Icon(Icons.upload),
label: const Text('Экспорт данных'),
label: const Text('Импорт данных'),
),
const Text("Необходимо 2 txt файла", style: TextStyle(fontWeight: FontWeight.bold)),
],
Expand Down

0 comments on commit 78433f1

Please sign in to comment.