Попробуйте этот код. Вы можете настроить его под свои нужды
class MyWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
return FlatButton(
onPressed: () {},
child: Container(
height: 50,
width: 100,
child: Stack(
children: [
Row(
children: [
Expanded(child: Container(color: Colors.red)),
Expanded(child: Container(color: Colors.blue)),
],
),
Center(child: Text('PRESS ME')),
],
),
),
);
}
}