圆角阴影按钮

Posted by アライさん on 2019年10月22日

1
2
3
4
5
6
7
8
9
RaisedButton(
color: Colors.blue,
highlightColor: Colors.blue[700],
colorBrightness: Brightness.dark,
splashColor: Colors.grey,
child: Text("Submit"),
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(20.0)),
onPressed: () => {},
);