1
0
forked from baron/baron-sso

탭 하단 양식 통일

This commit is contained in:
2026-01-27 13:58:58 +09:00
parent 36e91771f8
commit 1c1616de09

View File

@@ -12,7 +12,6 @@ import '../../../core/services/audit_service.dart';
import '../../../core/services/web_auth_integration.dart';
import '../../../core/services/auth_proxy_service.dart';
import '../../../core/notifiers/auth_notifier.dart';
import './forgot_password_screen.dart';
class LoginScreen extends ConsumerStatefulWidget {
final String? verificationToken;
@@ -553,17 +552,6 @@ class _LoginScreenState extends ConsumerState<LoginScreen>
),
child: const Text("로그인"),
),
const SizedBox(height: 16),
TextButton(
onPressed: () {
Navigator.of(context).push(
MaterialPageRoute(
builder: (context) => const ForgotPasswordScreen(),
),
);
},
child: const Text("비밀번호를 잊으셨나요?"),
)
],
),
),
@@ -591,18 +579,7 @@ class _LoginScreenState extends ConsumerState<LoginScreen>
),
child: const Text("로그인 링크 전송"),
),
const SizedBox(height: 16),
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
const Text("계정이 없으신가요?", style: TextStyle(color: Colors.grey, fontSize: 14)),
TextButton(
onPressed: () => context.push('/signup'),
child: const Text("회원가입"),
),
],
),
const SizedBox(height: 16),
const SizedBox(height: 24),
const Text(
"입력하신 정보로 로그인 링크를 전송합니다.",
style: TextStyle(color: Colors.grey, fontSize: 12),
@@ -665,6 +642,25 @@ class _LoginScreenState extends ConsumerState<LoginScreen>
],
),
),
const SizedBox(height: 16),
Column(
children: [
TextButton(
onPressed: () => context.push('/forgot-password'),
child: const Text("비밀번호를 잊으셨나요?"),
),
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
const Text("계정이 없으신가요?", style: TextStyle(color: Colors.grey, fontSize: 14)),
TextButton(
onPressed: () => context.push('/signup'),
child: const Text("회원가입"),
),
],
),
],
),
],
),
),