bug fixed

This commit is contained in:
nutchayut
2025-01-09 23:50:38 +07:00
parent 783d240879
commit b9ec3e6104
17 changed files with 279 additions and 305 deletions

View File

@@ -822,7 +822,7 @@ class _TransferBankConfirmState extends State<TransferBankConfirm> {
color: Colors.black,
)),
Text(
"โอนเงินผ่านพร้อมเพย์",
"Transfer money via PromptPay".tr(),
style: TextStyle(
color: Color(0xff050505),
fontSize: 20,
@@ -859,7 +859,7 @@ class _TransferBankConfirmState extends State<TransferBankConfirm> {
mainAxisAlignment: MainAxisAlignment.start,
children: [
Text(
"เลขที่บิล",
"เลขที่บิล".tr(),
style: TextStyle(
color: Color(0xff65676b),
fontSize: 16,
@@ -885,7 +885,7 @@ class _TransferBankConfirmState extends State<TransferBankConfirm> {
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text(
"วันที่ทำรายการ",
"วันที่ทำรายการ".tr(),
style: TextStyle(
color: Color(0xff65676b),
fontSize: 16,
@@ -909,7 +909,7 @@ class _TransferBankConfirmState extends State<TransferBankConfirm> {
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text(
"จาก",
"จาก".tr(),
style: TextStyle(
color: Color(0xff65676b),
fontSize: 16,
@@ -956,7 +956,7 @@ class _TransferBankConfirmState extends State<TransferBankConfirm> {
Row(
children: [
Text(
"ถึง",
"ถึง".tr(),
style: TextStyle(
color: Color(0xff65676b),
fontSize: 16,
@@ -1006,7 +1006,7 @@ class _TransferBankConfirmState extends State<TransferBankConfirm> {
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text(
"จำนวนเงิน",
"จำนวนเงิน".tr(),
style: TextStyle(
color: Color(0xff65676b),
fontSize: 16,
@@ -1050,7 +1050,7 @@ class _TransferBankConfirmState extends State<TransferBankConfirm> {
),
child: Center(
child: Text(
"ยกเลิก",
"ยกเลิก".tr(),
textAlign: TextAlign.center,
style: TextStyle(
color: Colors.white,
@@ -1075,14 +1075,22 @@ class _TransferBankConfirmState extends State<TransferBankConfirm> {
height: 46,
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(100),
color: Color(0xffad022c),
color: Colors.white,
boxShadow: [
BoxShadow(
color: Colors.grey.withOpacity(0.5),
spreadRadius: 2,
blurRadius: 4,
offset: Offset(0, 2), // changes position of shadow
),
],
),
child: Center(
child: Text(
"ตกลง",
"Confirm".tr(),
textAlign: TextAlign.center,
style: TextStyle(
color: Colors.white,
color: ColorCustom.greyBorder,
fontSize: 18,
fontWeight: FontWeight.w300,
),