From 2ed79bdc14165b9a6c1f19255f7b64709ad71c50 Mon Sep 17 00:00:00 2001 From: ZHR007 Date: Tue, 25 Nov 2025 11:52:02 +0800 Subject: [PATCH] no message --- lib/pages/mine/user_help_center_page.dart | 105 +++++++++++----------- 1 file changed, 54 insertions(+), 51 deletions(-) diff --git a/lib/pages/mine/user_help_center_page.dart b/lib/pages/mine/user_help_center_page.dart index 63eba94..e0e5cb8 100644 --- a/lib/pages/mine/user_help_center_page.dart +++ b/lib/pages/mine/user_help_center_page.dart @@ -245,60 +245,63 @@ class _UserHelpCenterPageState extends State { ], ), ), - Container( - height: 40.w, - padding: EdgeInsets.symmetric( - vertical: 10.w - ), - child: Row( - children: [ - Expanded( - child: Row( - mainAxisAlignment: MainAxisAlignment.center, - children: [ - Image.asset( - Assets.imagesEdit, - width: 15.w, - ), - SizedBox(width: 9.w,), - Text( - "意见反馈", - style: TextStyle( - fontSize: 16.w, - fontWeight: FontWeight.w500 - ), - ) - ], + ], + ), + ), + bottomNavigationBar: + SafeArea( + child: SizedBox( + height: 40.w, + child: Row( + children: [ + Expanded( + child: Row( + crossAxisAlignment: CrossAxisAlignment.center, + mainAxisAlignment: MainAxisAlignment.center, + children: [ + Image.asset( + Assets.imagesEdit, + width: 15.w, ), - ), - Container( - width: 1, - height: 20.w, - color: const Color.fromRGBO(230, 230, 230, 1), - ), - Expanded( - child: Row( - mainAxisAlignment: MainAxisAlignment.center, - children: [ - Image.asset( - Assets.imagesCustomer, - width: 15.w, - ), - SizedBox(width: 9.w,), - Text( - "联系客服", - style: TextStyle( - fontSize: 16.w, - fontWeight: FontWeight.w500 - ), - ) - ], + SizedBox(width: 8.w,), + Text( + "意见反馈", + style: TextStyle( + fontSize: 16.w, + fontWeight: FontWeight.w500 + ), + ) + ], + ), + ), + Container( + width: 1, + height: 20.w, + color: const Color.fromRGBO(230, 230, 230, 1), + ), + Expanded( + child: Row( + crossAxisAlignment: CrossAxisAlignment.center, + mainAxisAlignment: MainAxisAlignment.center, + children: [ + Image.asset( + Assets.imagesCustomer, + width: 20.w, + height: 20.w, ), - ), - ], + SizedBox(width: 4.w,), + Text( + "联系客服", + style: TextStyle( + fontSize: 16.w, + fontWeight: FontWeight.w500 + ), + ) + ], + ), ), - ) - ], + ], + ), ), ), )