From 5f410bf273507191c1cf82aab7ce44a3c794dc38 Mon Sep 17 00:00:00 2001 From: fmk Date: Mon, 17 Apr 2023 11:06:17 +0800 Subject: [PATCH] =?UTF-8?q?ios=20=E5=A2=9E=E5=8A=A0=E9=A2=84=E7=BA=A6?= =?UTF-8?q?=E6=97=B6=E9=97=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../activity_coupon_remarks.dart | 40 +++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/lib/settlement/settlement_view/activity_coupon_remarks.dart b/lib/settlement/settlement_view/activity_coupon_remarks.dart index 4335d428..534434c1 100644 --- a/lib/settlement/settlement_view/activity_coupon_remarks.dart +++ b/lib/settlement/settlement_view/activity_coupon_remarks.dart @@ -284,6 +284,46 @@ class _ActivityCouponRemarks extends State { ], ), ), + + SizedBox( + height: 13, + ), + InkWell( + onTap: () { + }, + child: Row( + mainAxisAlignment: MainAxisAlignment.center, + crossAxisAlignment: CrossAxisAlignment.center, + children: [ + Expanded( + flex: 1, + child: Text( + "预约时间", + style: TextStyle( + fontWeight: MyFontWeight.regular, + fontSize: 14.sp, + color: Color(0xFF353535), + ), + ), + ), + Expanded( + child: Text( + "请选择时间", + textAlign: TextAlign.end, + style: TextStyle( + fontSize: 14.sp, + color: Color(0xFF858585), + fontWeight: MyFontWeight.medium, + ), + ), + ), + Icon( + Icons.keyboard_arrow_right, + size: 16, + ), + ], + ), + ), ], ), );