Expanded(
flex: 1,
child: Padding(
padding: const EdgeInsets.all(12.0),
child: FlatButton(
color: Colors.red,
highlightColor: Colors.blue,
splashColor: Colors.green,
onPressed: () {
print('Çorba butonu tıklandı!');
},
child: Image.asset('images/yemekler/corba_1.jpg'),
),
),
),