// 다음 화면으로 전환
body: Center(
child: ElevatedButton(
onPressed: () {
// 버튼 클릭 시 일어나는 이벤트
Navigator.push(
context,
MaterialPageRoute(builder: (context) => const SecondScreen()),
);
},
child: Text('다음 화면으로'),
),
),
// 이전 화면으로 전환
body: Center(
child: ElevatedButton(
onPressed: () {
Navigator.pop(context);
},
child: Text('이전 화면으로'),
),
),
fit: BoxFit.cover,
: width, height 지정해놓고 사진 크기를 그 사이즈에 맞출 때 (잘려나감)edit > find > replace > //.*\n → replace all : 주석 지우기
option+command+L : 라인 reformat
option+enter : Wrap with ~
command+b : 코드 포맷 확인
✔️ preferences > live template > 단축키 등록 ex : navpush
→ $name$
: 해당 부분에 마우스 커서 가게 설정
❗️반복되는 위젯 components로 작성해서 props로 넘겨받기