Bottons
Flutter Buttons
Flutter Button Türleri:f
https://flutter.dev/docs/development/ui/widgets/material
https://material.io/components/buttons/flutter
TextButton( ),
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'),
),
),
),
TextButton
Yeni Widget
FlatButton
TextButton
RaisedButton
ElevatedButton
OutlineButton
OutlinedButton
Switch button
FloatingAction Button
Toggle Button
CheckBox
Radio Button
Last updated
Was this helpful?