Answers for "flutter change text color and size"

9

flutter font bold

Text(
  'Some text',
  style: TextStyle(
    fontSize: 24,
    fontWeight: FontWeight.bold),
)
Posted by: Guest on June-23-2020
1

increase text size of Test flutter

child: Text(
	'Hello World! This is a text widget.',
    style: TextStyle(fontSize: 25),
)
Posted by: Guest on June-19-2020

Code answers related to "flutter change text color and size"

Browse Popular Code Answers by Language