From 597a66075621e771148f7e22031a276715cb1b0d Mon Sep 17 00:00:00 2001 From: Ruslan Bakiev <572431+veikab@users.noreply.github.com> Date: Fri, 8 May 2026 10:47:38 +0700 Subject: [PATCH] Simplify voice intro copy --- lib/screens/mapflow_shell.dart | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/lib/screens/mapflow_shell.dart b/lib/screens/mapflow_shell.dart index ecc3a60..50cc64c 100644 --- a/lib/screens/mapflow_shell.dart +++ b/lib/screens/mapflow_shell.dart @@ -414,16 +414,14 @@ class _IntroStep extends StatelessWidget { ), const SizedBox(height: 22), Text( - 'Расскажи про место голосом', - style: Theme.of(context).textTheme.headlineSmall?.copyWith( - fontWeight: FontWeight.w900, + 'Поделись ощущением от места голосом. Мы разберем запись через AI и удалим аудио после обработки.', + textAlign: TextAlign.left, + style: Theme.of(context).textTheme.titleLarge?.copyWith( + fontWeight: FontWeight.w800, + height: 1.18, letterSpacing: 0, ), ), - const SizedBox(height: 10), - const Text( - 'Поделись ощущением, а не оценкой. Мы разберем голос через AI и удалим аудио после обработки.', - ), ], ), action: FilledButton(onPressed: onNext, child: const Text('Далее')),