diff --git a/wallpaper/lib/pages/imgcategorypage/imgcategorypage_view.dart b/wallpaper/lib/pages/imgcategorypage/imgcategorypage_view.dart index 597aeaf..925e47b 100644 --- a/wallpaper/lib/pages/imgcategorypage/imgcategorypage_view.dart +++ b/wallpaper/lib/pages/imgcategorypage/imgcategorypage_view.dart @@ -52,7 +52,26 @@ class ImgCategoryPageView extends GetView { 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,), + ], + ), + ), + ) ], ); }