|
@@ -364,11 +364,13 @@ class _GalleryAppBarWidgetState extends State<GalleryAppBarWidget> {
|
|
message: showArchive ? "archive" : "unarchive",
|
|
message: showArchive ? "archive" : "unarchive",
|
|
child: IconButton(
|
|
child: IconButton(
|
|
icon: Icon(
|
|
icon: Icon(
|
|
- Platform.isAndroid
|
|
|
|
|
|
+ Platform.isIOS
|
|
? (showArchive
|
|
? (showArchive
|
|
? Icons.archive_outlined
|
|
? Icons.archive_outlined
|
|
: Icons.unarchive_outlined)
|
|
: Icons.unarchive_outlined)
|
|
- : CupertinoIcons.archivebox,
|
|
|
|
|
|
+ : (showArchive
|
|
|
|
+ ? CupertinoIcons.archivebox
|
|
|
|
+ : CupertinoIcons.archivebox_fill),
|
|
),
|
|
),
|
|
onPressed: () {
|
|
onPressed: () {
|
|
_handleVisibilityChangeRequest(
|
|
_handleVisibilityChangeRequest(
|