web
web copied to clipboard
Lightweight browser API bindings built around JS static interop.
External named parameter constructors create an object with the given names as keys and the arguments as values. Certain keywords are reserved by Dart, however, like `is`, and require a...
Yesterday i got no problem when running my Flutter Web but today I got this error. I don't know what root cause of this error. Even I change the page...
I'm doing a migration to 'package:web' and 'dart:js_interop'. I'm currently using the context object from the 'dart:js' package to store functions in the window object reference. However, I've noticed that...
With dart:html i used this to download a file, `static void _downloadFile(List bytes, String fileNameWithExtension) { final html.Blob blob = html.Blob([bytes]); final String url = html.Url.createObjectUrlFromBlob(blob); final html.AnchorElement anchor =...
Currently I'm migrating the code to use web package. I have video element. ``` final videoElement = web.HTMLVideoElement(); ``` requestFullscreen and enterFullscreen methods are not available on HTMLVideoElement ``` videoElement.requestFullscreen();...
In the DevTools flutter web app, we'd like to periodically check our memory usage to take action and release resources before OOMing (https://github.com/flutter/devtools/issues/7002). To do this, I was looking at...
https://api.dart.dev/stable/3.2.5/dart-html/MediaElement/setSinkId.html
Was in dart:html https://api.dart.dev/stable/3.3.1/dart-html/ImageCapture-class.html
I thought this was being tracked in a previous bug somewhere, but can't find it. Currently, we only emit members that are supported on all 3 browsers and are on...
Currently missing! - [x] properties - example https://developer.mozilla.org/en-US/docs/Web/API/Node/baseURI - [ ] events - example https://developer.mozilla.org/en-US/docs/Web/API/Node/selectstart_event