use same text as used

and make text align to center
This commit is contained in:
Rafeek-Khoudare
2025-07-15 10:05:11 +03:00
parent 04352c980d
commit 42c8b776ec

View File

@ -31,8 +31,11 @@ class DeleteAccountPage extends StatelessWidget {
children: [ children: [
Column( Column(
children: [ children: [
Text( BodyMedium(
'Thank you for using Syncrow', text: 'Thank you for using Syncrow',
fontWeight: FontWeight.w400,
fontSize: 14,
textAlign: TextAlign.center,
), ),
SizedBox( SizedBox(
height: 10, height: 10,
@ -94,6 +97,7 @@ class DeleteAccountPage extends StatelessWidget {
'if you confirm to "delete account",the account will be deleted', 'if you confirm to "delete account",the account will be deleted',
fontWeight: FontWeight.w400, fontWeight: FontWeight.w400,
fontSize: 16, fontSize: 16,
textAlign: TextAlign.center,
), ),
], ],
), ),