
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
실수로 질문 종료 버튼을 눌러서 다시 올려요
튜터님 말씀주신 것 처럼 괄호 매칭을 해보려고 했는데
보니까 11번째 줄에 있는 빨강색 {} 이 괄호 셋이 안 맞는 것 같아요.
제일 밑에 줄(46번째) 에 } 이거 넣어주면 될까요?

작성한 코드 및 에러 메세지
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
home: Scaffold(
appBar: AppBar(
title: Text(
"LiveWell",
style: TextStyle(
fontSize: 28,),
),
),
body: Padding(
padding: const EdgeInsets.all(16),
child: Column(
children: [
TextField(
decoration: InputDecoration(
labelText: "이메일",
),
),
TextField(
obscureText: true,
decoration: InputDecoration(
labelText: "비밀번호",
),
),
ElevatedButton(
onPressed: () {},
child: Text("로그인"),
)
],
),
),
),
);
