public Widget buildRaisedButton()
 {
     return(new Align(
                alignment: new Alignment(0.0f, -0.2f),
                child: new Column(
                    mainAxisSize: MainAxisSize.min,
                    children: new List <Widget> {
         new ButtonBar(
             mainAxisSize: MainAxisSize.min,
             children: new List <Widget> {
             new RaisedButton(
                 child: new Text("RAISED BUTTON"),
                 onPressed: () => {
                 // Perform some action
             }
                 ),
             new RaisedButton(
                 child: new Text("DISABLED"),
                 onPressed: null
                 )
         }
             ),
         new ButtonBar(
             mainAxisSize: MainAxisSize.min,
             children: new List <Widget> {
             RaisedButton.icon(
                 icon: new Icon(Icons.add, size: 18.0f),
                 label: new Text("RAISED BUTTON"),
                 onPressed: () => {
                 // Perform some action
             }
                 ),
             RaisedButton.icon(
                 icon: new Icon(Icons.add, size: 18.0f),
                 label: new Text("DISABLED"),
                 onPressed: null
                 )
         }
             )
     }
                    )
                ));
 }