Home > Net >  Flutter - How to make a text tidier
Flutter - How to make a text tidier

Time:11-29

I want to make this text tidier, does anyone know how?

enter image description here

CodePudding user response:

If you by tidier means make text center, you can use textAlign:

Text(
  'Are you sure want to delete ...',
  textAlign: TextAlign.center,
),
  • Related