diff --git a/flutter/lib/mobile/pages/remote_page.dart b/flutter/lib/mobile/pages/remote_page.dart index c9a9daf616..b47c6b132b 100644 --- a/flutter/lib/mobile/pages/remote_page.dart +++ b/flutter/lib/mobile/pages/remote_page.dart @@ -569,9 +569,11 @@ class _RemotePageState extends State { child: Text(translate(label), style: labelStyle), trailingIcon: Transform.scale( scale: (isDesktop || isWebDesktop) ? 0.8 : 1, - child: IconButton( - onPressed: onPressed, - icon: icon, + child: IgnorePointer( + child: IconButton( + onPressed: null, + icon: icon, + ), ), ), onPressed: onPressed,