

일전 다른 답변에서 가져온 코드도 붙여넣기 해보았지만 생성되지 않습니다.
body: Column(
children: [
Text(
"Hello flutter",
style: TextStyle(fontSize: 28),
),
TextField(
decoration: InputDecoration(
labelText: "이메일",
),
),
TextField(
decoration: InputDecoration(
labelText: "비밀번호",
),
)
],
),
),
);
}
}
