'How can I change a letters width Flutter?

I want to know how to adjust the width of a letter. When using Kotlin, it can be adjusted with scalex. But how do I do it in Flutter?

enter image description here



Solution 1:[1]

i have some solution for you, hope it help.

  1. If you want fit a text string to container, you can use FittedBox and the text will auto scale to fit it container.

  2. If you want to scale widget by ratio, use Transform.scale.

  3. Change the font of text.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 MendelG