flutter text alligne left code example
Example 1: textAlign flutter
Text('text', textAlign: TextAlign.left)
Example 2: flutter align text right
Container(
color: Colors.red,
child: Text(...)
)
Text('text', textAlign: TextAlign.left)
Container(
color: Colors.red,
child: Text(...)
)