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'),
              ),
            ),
          ),

Last updated