This commit is contained in:
bluesea 2024-05-13 15:56:10 +08:00
parent 638824974d
commit 7b77d75a4c
2 changed files with 50 additions and 40 deletions

View File

@ -52,7 +52,14 @@ class ImgCategoryPageView extends GetView {
fit: BoxFit.cover, fit: BoxFit.cover,
), ),
Align( Material(
color: Colors.transparent,
child: InkWell(
onTap: () {
print("查看大图...");
// Get.to(ImgCategoryPageView(stitle: title,dataModel: controller.typeList[index]));
},
child: Align(
alignment: Alignment.bottomCenter, alignment: Alignment.bottomCenter,
child: Container( child: Container(
color: Colors.black.withAlpha(160), color: Colors.black.withAlpha(160),
@ -75,7 +82,10 @@ class ImgCategoryPageView extends GetView {
], ],
), ),
), ),
) ),
),
),
], ],
); );
} }