Answers for "how to change text style in cupertino 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

Code answers related to "how to change text style in cupertino button in flutter"

Browse Popular Code Answers by Language