화면 전환 이벤트 주기 위해서 ElevatedButton으로 작성
FractionallySizedBox(
widthFactor: 1.1,
),
*FittedBox : 자식 위젯이 부모 위젯의 사이즈에 꽉 차도록 배치
유튜브 영상 클릭 시 해당 영상 플레이 화면으로 전환
넘어갈 화면 만들어줘야 이벤트 확인 가능 → 두번째 스크린 작성
Divider(
thickness: 0.5,
color: Colors.white,
),
Expanded(
child: Image.asset('assets/playlist4.png'),
),
SingleChildScrollView(
scrollDirection: Axis.horizontal, // 스크롤 방향 지정
child: Row(
'코드 작성'
),
),