textbutton flutter style code example
Example: TextButton Style in flutter
TextButton( child: Text('Woolha.com'), style: TextButton.styleFrom( primary: Colors.teal, ), onPressed: () { print('Pressed'); }, )
TextButton( child: Text('Woolha.com'), style: TextButton.styleFrom( primary: Colors.teal, ), onPressed: () { print('Pressed'); }, )