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