|
@@ -54,6 +54,12 @@ class ControlBottomAppBar extends ConsumerWidget {
|
|
|
label: "control_bottom_app_bar_share".tr(),
|
|
|
onPressed: enabled ? onShare : null,
|
|
|
),
|
|
|
+ if (hasRemote)
|
|
|
+ ControlBoxButton(
|
|
|
+ iconData: Icons.archive,
|
|
|
+ label: "control_bottom_app_bar_archive".tr(),
|
|
|
+ onPressed: enabled ? onArchive : null,
|
|
|
+ ),
|
|
|
if (hasRemote)
|
|
|
ControlBoxButton(
|
|
|
iconData: Icons.favorite_border_rounded,
|
|
@@ -89,12 +95,6 @@ class ControlBottomAppBar extends ConsumerWidget {
|
|
|
)
|
|
|
: null,
|
|
|
),
|
|
|
- if (hasRemote)
|
|
|
- ControlBoxButton(
|
|
|
- iconData: Icons.archive,
|
|
|
- label: "control_bottom_app_bar_archive".tr(),
|
|
|
- onPressed: enabled ? onArchive : null,
|
|
|
- ),
|
|
|
],
|
|
|
);
|
|
|
}
|