Iam using textScaleFactor in every Text widget in Flutter, but if the user change the display or font size from device settings. it change the size for all Text widgets of the whole app.
Is there any way to prevent listening to text sizes in the device settings from main function, MaterialApp or ThemeData?
I dont want to use MediaQuery because my app is very big and I cannot change every Text widget right now.
Thanks