|
|
|
|
|
|
public override Widget build(BuildContext context) { |
|
|
|
return new Material( |
|
|
|
child: new Center( |
|
|
|
child: new MaterialButton( |
|
|
|
child: new FlatButton( |
|
|
|
shape: new RoundedRectangleBorder(borderRadius: BorderRadius.all(20.0f)), |
|
|
|
color: new Color(0xFF00FF00), |
|
|
|
child: new Text("Click Me"), |
|
|
|
onPressed: () => { Debug.Log("pressed here"); } |
|
|
|
) |
|
|
|
) |
|
|
|