
home: Scaffold(
appBar: AppBar(),
body: Column(
children: [
Text(
"hello flutter",
style: TextStyle(fontSize: 28),
),
TextField(
decoration: InputDecoration(
labelText: "이메일",
),
)
TextField(
decoration: InputDecoration(
labelText: "이메일",
),
)
],
),
),
이렇게 진행중인데,
TextField(
decoration: InputDecoration(
labelText: "이메일",
),
)
강의중 복사 붙여넣기를 하라고 말씀하셔서
복붙을 그대로 해도 시뮬레이터에 적용이 되질 않습니다.
