I want to make this text tidier, does anyone know how?
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,
),
I want to make this text tidier, does anyone know how?
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,
),