Open TDuffinNTU opened 1 week ago
Hi Thomas,
Thanks for using accessibility tools and thank you for this good suggestion. Another option to fix this could be to detect max scale factor from MediaQuery
and set it as max value in the tools menu but I think having an option to go beyond the limit is nice to have for development purposes (it helps breaking layouts and finding overflows). Your suggestion sounds good, let's add it 👍
In our app we use
maxScaleFactor
to limit the size of the text scaling a user can apply (namely to ensure useful elements are always visible on-screen). We do this through making our app's layout thechild
Widget of aMediaQuery
Widget like so:However,
accessibility_tools
still allows you to override this limit through its tools menu. It would be nice if we could set this limit in the tools menu too so that we don't get unnecessary complaints from our designers and internal testers of layout issues when trying factors beyond what arelease
build can achieve.Not a major issue for me, just a nice-to-have :) Thanks!