|
|
@@ -48,13 +48,19 @@ class _MemberRetainDialogWidget extends Dialog {
|
|
|
top: 324.w,
|
|
|
left: 73.w,
|
|
|
right: 73.w,
|
|
|
- child: Container(
|
|
|
- height: 40.w,
|
|
|
- decoration: getPrimaryBtnDecoration(100.w),
|
|
|
- child: Center(
|
|
|
- child: Text(StringName.memberContinuePay,
|
|
|
- style:
|
|
|
- TextStyle(fontSize: 15.sp, color: Colors.white)),
|
|
|
+ child: GestureDetector(
|
|
|
+ onTap: () {
|
|
|
+ MemberRetainDialog.dismiss();
|
|
|
+ payClick();
|
|
|
+ },
|
|
|
+ child: Container(
|
|
|
+ height: 40.w,
|
|
|
+ decoration: getPrimaryBtnDecoration(100.w),
|
|
|
+ child: Center(
|
|
|
+ child: Text(StringName.memberContinuePay,
|
|
|
+ style: TextStyle(
|
|
|
+ fontSize: 15.sp, color: Colors.white)),
|
|
|
+ ),
|
|
|
),
|
|
|
),
|
|
|
),
|