로그인 화면 아이디/비밀번호 입력칸 폭 제한 (데스크톱 웹에서 너무 넓게 늘어지던 문제 수정)

This commit is contained in:
2026-08-05 14:07:06 +09:00
parent 4e12b279e2
commit dca7912f8d
+8 -1
View File
@@ -421,6 +421,8 @@ class _LoginScreenState extends State<LoginScreen> {
body: Center( body: Center(
child: SingleChildScrollView( child: SingleChildScrollView(
padding: const EdgeInsets.all(24.0), padding: const EdgeInsets.all(24.0),
child: ConstrainedBox(
constraints: const BoxConstraints(maxWidth: 420),
child: Column( child: Column(
mainAxisAlignment: MainAxisAlignment.center, mainAxisAlignment: MainAxisAlignment.center,
children: [ children: [
@@ -506,7 +508,11 @@ class _LoginScreenState extends State<LoginScreen> {
mainAxisAlignment: MainAxisAlignment.spaceEvenly, mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [ children: [
TextButton.icon( TextButton.icon(
icon: const Icon(Icons.gavel, size: 18, color: Colors.grey), icon: const Icon(
Icons.gavel,
size: 18,
color: Colors.grey,
),
label: const Text( label: const Text(
'교사 간편인증', '교사 간편인증',
style: TextStyle(color: Colors.grey), style: TextStyle(color: Colors.grey),
@@ -539,6 +545,7 @@ class _LoginScreenState extends State<LoginScreen> {
), ),
), ),
), ),
),
); );
} }
} }