Lompat ke konten Lompat ke sidebar Lompat ke footer

Gaya 3 Button Flutter

 

ElevatedButton(
                style: ElevatedButton.styleFrom(primary: Color.fromARGB(255, 217, 233, 42)),
                onPressed: () {},
                child: Text('Elevated Button')),
            TextButton(
                style: TextButton.styleFrom(primary: Colors.lime),
                onPressed: () {},
                child: Text('Text Button')),
            OutlinedButton(
                style: OutlinedButton.styleFrom(primary: Colors.lime),
                onPressed: () {},
                child: Text('Outlined Button'))
close