textbuttons flutter code example
Example 1: TextButton Style in flutter
TextButton( child: Text('Woolha.com'), style: TextButton.styleFrom( primary: Colors.teal, ), onPressed: () { print('Pressed'); }, )
Example 2: flutter text button
TextButton(
onPressed: () {
// Respond to button press
},
child: Text("TEXT BUTTON"),
)