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: () => {}, );
|