justified text alignment Flutter Text widget code example
Example: text justify in flutter
Container(
width: MediaQuery.of(context).size.width,
margin: EdgeInsets.only(bottom: 10),
padding: EdgeInsets.all(10),
child: Align(
alignment: Alignment.centerLeft,
child: Text(Strings.privacy, style: TextStyle(
color: Colors.black87,
fontSize: 15,
letterSpacing: 1.4,
),
),
),
);