Answers for "textbutton clicked style 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

Code answers related to "textbutton clicked style flutter"

Browse Popular Code Answers by Language