“Flatternknopfstil” Code-Antworten

Textknopf Flutterstil

TextButton(
	child: Text('Text'),
    style: TextButton.styleFrom(primary: Colors.blue),
    onPressed: () {
    	print('Pressed');
    },
)
loonix

Flatternknopfstil

ElevatedButton(
  style: ButtonStyle(
    backgroundColor: MaterialStateProperty.resolveWith<Color>(
      (Set<MaterialState> states) {
        if (states.contains(MaterialState.pressed))
          return Theme.of(context).colorScheme.primary.withOpacity(0.5);
        return null; // Use the component's default.
      },
    ),
  ),
)
Stupid Swiftlet

Ähnliche Antworten wie “Flatternknopfstil”

Fragen ähnlich wie “Flatternknopfstil”

Weitere verwandte Antworten zu “Flatternknopfstil” auf Dart

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen