So stylen Sie einen Textknopf in Flattern
TextButton(
child: Text('Text'),
style: ButtonStyle(backgroundColor: MaterialStateProperty.all(Colors.red)),
onPressed: () {
// action on pressed
},
),
Your CodeFu