
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
컬럼이 잘 안묶여 있어서 그런가 하고 괄호 정렬? 을 다시 맞춰주었는데
왜때문인지 body 를 Padding 으로 묶고 값(16)을 입력 후 세이브해도 에뮬레이터에 반영되지 않아요

작성한 코드 및 에러 메세지
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@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("로그인"),
)
],
),
),
),
);
