You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi @agordeev, Sorry for the late reply, on the web you have to disable the default context menu
@overridevoidinitState() {
super.initState();
// On web, disable the browser's context menu since this example uses a custom// Flutter-rendered context menu.if (kIsWeb) {
BrowserContextMenu.disableContextMenu();
}
}
@overridevoiddispose() {
if (kIsWeb) {
BrowserContextMenu.enableContextMenu();
}
}
Tested on example app.
On iOS, the long press shows the paste button.
On web iOS, the long press does nothing.
iOS app (works as expected):
Simulator.Screen.Recording.-.iPhone.15.Pro.Max.-.2024-06-15.at.13.15.46.mp4
iOS web app (doesn't work as expected):
RPReplay_Final1718450176.MP4
The text was updated successfully, but these errors were encountered: