We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1662cc9 commit d2d00ccCopy full SHA for d2d00cc
1 file changed
lib/web_ui/lib/src/engine/window.dart
@@ -158,6 +158,12 @@ class EngineWindow extends ui.Window {
158
case 'SystemSound.play':
159
// There are no default system sounds on web.
160
return;
161
+ case 'Clipboard.setData':
162
+ case 'Clipboard.getData':
163
+ // TODO(nurhan): https://github.com/flutter/flutter/issues/46020
164
+ print('WARNING: Clipboard API unimplemented for Flutter for Web. '
165
+ 'Use context menu for text editing.');
166
+ return;
167
}
168
break;
169
0 commit comments