diff --git a/lib/views/authentication/screens/password.dart b/lib/views/authentication/screens/password.dart index adbe625..e813f5b 100644 --- a/lib/views/authentication/screens/password.dart +++ b/lib/views/authentication/screens/password.dart @@ -116,7 +116,7 @@ class _PasswordInputState extends State { mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ InkWrapper( - onPressed:Navigator.of(ActionSheetUtils.context).pop, + onPressed: Navigator.of(ActionSheetUtils.context).pop, child: const Icon( DidvanIcons.close_solid, size: 24, @@ -140,17 +140,16 @@ class _PasswordInputState extends State { height: 12, ), const DidvanText( - "کاربر گرامی\nدر جهت استفاده بهتر و مفید‌تر از برنامه لطفا دسته‌بندی‌های مورد علاقه خود و زمان دریافت اعلانات را انتخاب کنید") + "کاربر گرامی\nلطفا جهت شخصی‌سازی و استفاده بهتر از برنامه، دسته‌بندی‌های مورد علاقه خود و زمان دریافت اعلانات را انتخاب نمایید.") ], ), hasDismissButton: false, onConfirmed: () => Navigator.of(ActionSheetUtils.context).pushNamed( Routes.favouritesStep, - arguments: {"toTimer":true}, + arguments: {"toTimer": true}, ), confrimTitle: 'تایید', ), ); - } }