FlatButton 대체 TextButton
310
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





