feat:View All 点击区域过小,和下拉刷新事件冲突

This commit is contained in:
pengtao 2025-10-15 13:57:32 +08:00
parent 74976ae83a
commit 1cca41b1de

View File

@ -53,7 +53,7 @@ class _KtMyListPageState extends State<KtMyListPage> {
if (state.chestList.isNotEmpty) if (state.chestList.isNotEmpty)
Container( Container(
width: ScreenUtil().screenWidth - 30.w, width: ScreenUtil().screenWidth - 30.w,
padding: EdgeInsets.fromLTRB(6.w, 53.w, 6.w, 6.w), padding: EdgeInsets.fromLTRB(6.w, 46.w, 6.w, 6.w),
decoration: BoxDecoration( decoration: BoxDecoration(
image: DecorationImage( image: DecorationImage(
image: AssetImage('collect_bg.png'.ktIcon), image: AssetImage('collect_bg.png'.ktIcon),
@ -77,6 +77,8 @@ class _KtMyListPageState extends State<KtMyListPage> {
const Spacer(), const Spacer(),
GestureDetector( GestureDetector(
onTap: () => Get.to(KtMyChestPage()), onTap: () => Get.to(KtMyChestPage()),
child: Container(
padding: EdgeInsets.all(8.w),
child: Row( child: Row(
children: [ children: [
Text( Text(
@ -90,13 +92,13 @@ class _KtMyListPageState extends State<KtMyListPage> {
'ic_right_white.png'.ktIcon, 'ic_right_white.png'.ktIcon,
width: 10.w, width: 10.w,
), ),
SizedBox(width: 6.w),
], ],
), ),
), ),
),
], ],
), ),
SizedBox(height: 15.w), SizedBox(height: 8.w),
Container( Container(
height: 145.w, height: 145.w,
decoration: BoxDecoration( decoration: BoxDecoration(