bug fixed

This commit is contained in:
nutchayut
2025-01-09 14:17:04 +07:00
parent 62c7cc2179
commit 3aa23f3cbc

View File

@@ -267,16 +267,26 @@ class _TransferPromtptPayDialogState extends State<TransferPromtptPayDialog> {
borderRadius: BorderRadius.circular(100), borderRadius: BorderRadius.circular(100),
color: Color(0xffad022c), color: Color(0xffad022c),
), ),
child: Center( child: Row(
child: Text( mainAxisSize: MainAxisSize.min,
"บันทึกและปิด".tr(), mainAxisAlignment: MainAxisAlignment.center,
textAlign: TextAlign.center, crossAxisAlignment: CrossAxisAlignment.center,
style: TextStyle( children: [
color: Colors.white, SizedBox(
fontSize: 18, width: 106,
fontWeight: FontWeight.w300, height: 32,
child: Text(
"บันทึกและปิด".tr(),
textAlign: TextAlign.center,
style: GoogleFonts.kanit(
color: Colors.white,
fontSize: 20,
fontWeight: FontWeight.w500,
),
), ),
)), ),
],
),
)), )),
], ],