This commit is contained in:
bluesea 2024-05-13 15:37:20 +08:00
parent e95d575e27
commit 501a60babe

View File

@ -52,7 +52,26 @@ class ImgCategoryPageView extends GetView {
fit: BoxFit.cover, fit: BoxFit.cover,
), ),
Align(
alignment: Alignment.bottomCenter,
child: Container(
color: Colors.black.withAlpha(160),
height: 40,
width: double.infinity,
child: Row(
children: [
IconButton(onPressed:() {
print("download....");
}, icon: Icon(Icons.download),color: Colors.white,),
IconButton(onPressed:() {
print("设置壁纸");
}, icon: Icon(Icons.wallpaper),color: Colors.white,),
],
),
),
)
], ],
); );
} }