diff --git a/flutter/assets/actions_mobile.svg b/flutter/assets/actions_mobile.svg
new file mode 100644
index 000000000..6aed6053e
--- /dev/null
+++ b/flutter/assets/actions_mobile.svg
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/flutter/lib/desktop/widgets/remote_menubar.dart b/flutter/lib/desktop/widgets/remote_menubar.dart
index 2b7f8c00a..3bec6862a 100644
--- a/flutter/lib/desktop/widgets/remote_menubar.dart
+++ b/flutter/lib/desktop/widgets/remote_menubar.dart
@@ -413,14 +413,18 @@ class _RemoteMenubarState extends State {
menubarItems.add(_buildPinMenubar(context));
menubarItems.add(_buildFullscreen(context));
if (widget.ffi.ffiModel.isPeerAndroid) {
- menubarItems.add(IconButton(
+ menubarItems.add(MenuButton(
tooltip: translate('Mobile Actions'),
- color: _MenubarTheme.blueColor,
- icon: const Icon(Icons.build),
+ icon: SvgPicture.asset(
+ "assets/actions_mobile.svg",
+ color: Colors.white,
+ ),
onPressed: () {
widget.ffi.dialogManager
.toggleMobileActionsOverlay(ffi: widget.ffi);
},
+ color: _MenubarTheme.blueColor,
+ hoverColor: _MenubarTheme.hoverBlueColor,
));
}
}