📜  颤动材质按钮 - 任何代码示例

📅  最后修改于: 2022-03-11 14:56:07.904000             🧑  作者: Mango

代码示例4
TextButton(
onPressed: () {
print('I got clicked');
},
child: Text('Button'),
style: TextButton.styleFrom(
primary: Colors.white,
textStyle: TextStyle(fontSize: 20.0),
backgroundColor: Colors.red),
),