Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

text button flutter style

TextButton(
	child: Text('Text'),
    style: TextButton.styleFrom(primary: Colors.blue),
    onPressed: () {
    	print('Pressed');
    },
)
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #text #button #flutter #style
ADD COMMENT
Topic
Name
5+3 =