Hi!
While trying my app on real devices, I've noticed that if the user sets their fonts bigger on their device, the contents of my app overflow out of the widget.
file:///C:/Users/marc_/Downloads/Screenshot_2023-10-20-19-40-19-431_flutterflow.emotional.fitness.app-EDIT.jpg
Of course, I know that containers should avoid this, so I try to wrap every text within a container, but this doesn't always solve the problem:
file:///C:/Users/marc_/Downloads/Screenshot_2023-10-20-20-50-25-139_flutterflow.emotional.fitness.app-EDIT.jpg
So, FF proposes two ways to solve this:
Font auto-size: the issue with this is that auto-size calculates the actual size as a function of the text length, so since every text widget may have different lengths, you can have a page where every text widget may end up having different sizes (an absolute mess, even trying to distribute spaces with the 'Flex' parameter).
Overflow replacement: the issue with this is that you can only apply it to text inputs from your database.
How do you solve this in your apps? Thanks so much!