Trying to right align a container with text view child, it has a row parent which is inside another column, tried number of solutions from Stack Overflow, didn\'t work.
Use Spacer which will get remaining space and will divide the widget equally
Spacer
Row( children: [ Text("Text 1", style: TextStyle(fontSize: 20),), Spacer(), Text("Text 2", style: TextStyle(fontSize: 20),), Spacer(), Text("Text 3", style: TextStyle(fontSize: 20),), ], ),
Output: