From 78433f18f4f2e1799c894a97e2c7868637706cdf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9A=D1=83=D0=B7=D0=BD=D0=B5=D1=86=D0=BE=D0=B2=20=D0=9D?= =?UTF-8?q?=D0=B8=D0=BA=D0=BE=D0=BB=D0=B0=D0=B9?= Date: Thu, 12 Dec 2024 16:26:12 +0300 Subject: [PATCH] Update import_export_data.dart --- .../settings/presentation/widgets/import_export_data.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flutter_front/lib/features/settings/presentation/widgets/import_export_data.dart b/flutter_front/lib/features/settings/presentation/widgets/import_export_data.dart index 7573c50..cfc7e49 100644 --- a/flutter_front/lib/features/settings/presentation/widgets/import_export_data.dart +++ b/flutter_front/lib/features/settings/presentation/widgets/import_export_data.dart @@ -39,12 +39,12 @@ class FileHandlerWidget extends StatelessWidget { context.read().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)), ],