'Localization support in Flutter
Solution 1:[1]
You can make the text widget position fixed either by wrapping it with Align widget
Align(
alignment: Alignment.centerRight,
child: Text(
'????',
),
),
Or change the textAlign property
Text(
'????',
textAlign: TextAlign.right,
),
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 |


