From 0a37ce249ee87a8ec5f367204e1a8529c5e426dd Mon Sep 17 00:00:00 2001 From: Andrew nuark G Date: Wed, 17 May 2023 21:02:49 +0700 Subject: [PATCH] =?UTF-8?q?=D0=9F=D0=B5=D1=80=D0=B5=D0=B2=D1=91=D0=BB=2040?= =?UTF-8?q?4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/pages/not_found_page.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/pages/not_found_page.dart b/lib/pages/not_found_page.dart index f92fe21..bea69f5 100644 --- a/lib/pages/not_found_page.dart +++ b/lib/pages/not_found_page.dart @@ -15,7 +15,7 @@ class _NotFoundPageState extends State return Scaffold( body: Center( child: Text( - 'Page not found', + 'Страница не найдена', style: Theme.of(context).textTheme.headlineMedium, ), ), @@ -30,14 +30,14 @@ class _NotFoundPageState extends State onPressed: () { Get.back(canPop: false); }, - child: const Text('Go back'), + child: const Text('Назад'), ), const SizedBox(width: 16), ElevatedButton( onPressed: () { Get.offAllNamed("/"); }, - child: const Text('Go home'), + child: const Text('Домой'), ), ], ),