flutter row two buttons code example
Example: flutter button side by side full width
Widget myLayoutWidget() {
return Container(
child: Row(
children: [
Expanded(
child: RaisedButton(
onPressed: () {},
child: Text("Very long text button",),
),
),
Expanded(
child: RaisedButton(
child: Text("Very very very very long text button"),
color: Colors.red,
onPressed: () {},
),
)
],
),
);
}