Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Default font size for ListTile's title property in Flutter?

Tags:

flutter

What is the default font size for ListTile's title property in Flutter? Also, is there a quick and easy way to know font styles / sizes / color of different UI elements at run time?

like image 442
Raj Chaudhary Avatar asked Dec 01 '25 07:12

Raj Chaudhary


1 Answers

I don't know exactly all the default values of ThemeData, but ListTile's title property always sets its texts to the following TextStyle: Theme.of(context).textTheme.title. You can define your own ThemeData and set its textTheme's title property to change ListTile's titles. This also applies to colors. Similarly, ListTile's subtile property always sets its texts to Theme.of(context).textTheme.subtitle

Check out the documentation on Theme Data for more info on its properties.

like image 192
drogel Avatar answered Dec 02 '25 22:12

drogel



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!