Answers for "text size flutter"

9

flutter font bold

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

adjust text size flutter

Text(
    'Hello World!',
    style: TextStyle(fontSize: 25),
),
Posted by: Guest on August-09-2021
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

Browse Popular Code Answers by Language