xxxxxxxxxx
Text(
'Text Here',
textAlign: TextAlign.right,
),
xxxxxxxxxx
Text(
'Hello, Flutter!',
textAlign: TextAlign.center, // Aligns text in the center
style: TextStyle(
fontSize: 20,
fontWeight: FontWeight.bold,
fontStyle: FontStyle.italic,
color: Colors.blue,
),
)