From 67457a23a12c11c042ab0f0bac78666edee753d2 Mon Sep 17 00:00:00 2001 From: chan Date: Tue, 24 Feb 2026 13:08:23 +0900 Subject: [PATCH] =?UTF-8?q?uf=20lint=20=EC=A0=81=EC=9A=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../lib/features/auth/presentation/forgot_password_screen.dart | 2 +- .../lib/features/auth/presentation/login_success_screen.dart | 2 +- .../lib/features/auth/presentation/reset_password_screen.dart | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/userfront/lib/features/auth/presentation/forgot_password_screen.dart b/userfront/lib/features/auth/presentation/forgot_password_screen.dart index 1cca15c8..40543758 100644 --- a/userfront/lib/features/auth/presentation/forgot_password_screen.dart +++ b/userfront/lib/features/auth/presentation/forgot_password_screen.dart @@ -98,7 +98,7 @@ class _ForgotPasswordScreenState extends State { children: [ Text( tr('ui.userfront.forgot.heading'), - style: TextStyle(fontSize: 28, fontWeight: FontWeight.bold), + style: const TextStyle(fontSize: 28, fontWeight: FontWeight.bold), textAlign: TextAlign.center, ), if (_drySendEnabled) ...[ diff --git a/userfront/lib/features/auth/presentation/login_success_screen.dart b/userfront/lib/features/auth/presentation/login_success_screen.dart index cb045820..a8ea5dc6 100644 --- a/userfront/lib/features/auth/presentation/login_success_screen.dart +++ b/userfront/lib/features/auth/presentation/login_success_screen.dart @@ -23,7 +23,7 @@ class LoginSuccessScreen extends StatelessWidget { const SizedBox(height: 24), Text( tr('ui.userfront.login_success.title'), - style: TextStyle(fontSize: 32, fontWeight: FontWeight.bold), + style: const TextStyle(fontSize: 32, fontWeight: FontWeight.bold), ), const SizedBox(height: 16), Text( diff --git a/userfront/lib/features/auth/presentation/reset_password_screen.dart b/userfront/lib/features/auth/presentation/reset_password_screen.dart index d2ccd716..16c7ba5e 100644 --- a/userfront/lib/features/auth/presentation/reset_password_screen.dart +++ b/userfront/lib/features/auth/presentation/reset_password_screen.dart @@ -178,7 +178,7 @@ class _ResetPasswordScreenState extends State { children: [ Text( tr('ui.userfront.reset.subtitle'), - style: TextStyle( + style: const TextStyle( fontSize: 28, fontWeight: FontWeight.bold, ),