inflearn logo
강의

강의

N
챌린지

챌린지

멘토링

멘토링

N
클립

클립

로드맵

로드맵

지식공유

Flutter + Firebase로 넷플릭스 UI 클론 코딩하기 [무작정 플러터]

상세 보기 화면 만들기

FlatButton 대체 TextButton

310

ksm5318
1

child: TextButton(
onPressed: () {},
style: TextButton.styleFrom(
primary: Colors.white,
backgroundColor: Colors.red
),
child: Row(
mainAxisAlignment:
MainAxisAlignment.center,
children: [
Icon(Icons.play_arrow),
Text('재생')
],
),
),

답변 0