Landscape mode, font size increases causing overflow
315574925 opened this issue · 5 comments
Landscape mode, font size increases causing overflow
This issue is stale because it has been open for 30 days with no activity.
I also appeared, the current flutter
version is 3.19.5
the same issue
I thinks it's happens because in 3.9.0 fontSizeResolver calculate scale by width, and in landscape mode width very large and scale factor more 2. You can try override fontSizeResolver like this #558 (comment) and in landscape mode will calculate by screenSize.height / designSize.width
I thinks it's happens because in 3.9.0 fontSizeResolver calculate scale by width, and in landscape mode width very large and scale factor more 2. You can try override fontSizeResolver like this #558 (comment) and in landscape mode will calculate by screenSize.height / designSize.width
I applied this and it worked perfectly for my case!