Answers for "style text button in flutter"

4

text button flutter style

TextButton(
	child: Text('Text'),
    style: TextButton.styleFrom(primary: Colors.blue),
    onPressed: () {
    	print('Pressed');
    },
)
Posted by: Guest on June-08-2021
-2

textbutton style flutter

TextButton
Posted by: Guest on October-29-2021

Browse Popular Code Answers by Language