David Iglesias

Results 33 issues of David Iglesias

The current version of the Google Maps Flutter Web plugin does not have the "My Location" functionality. This means there are two Map options that are not implemented: * `myLocationButtonEnabled`...

c: new feature
p: maps
platform-web
package
P3
team-web
triaged-web

Attempting to re-enable url_launcher_web testing in web-platform_tests in the stable channel. ## Pre-launch Checklist - [ ] I read the [Contributor Guide] and followed the process outlined there for submitting...

This PR modifies the Google Sign In plugin so Web application authors can render a "Google Sign In Button" (like [this one](https://developers.google.com/identity/gsi/web/guides/display-button)). This is needed to obtain a guaranteed `idToken`...

p: google_sign_in
platform-web

The previous version of `renderButton` required exposing `DomHtmlElement` from this library to the world. We don't want that, instead, the JS-Interop API should accept anything that is an HtmlElement (for...

platform-web

### Use case The current web engine uses global event listeners to handle events that might "get out" of Flutter's hostElement. ### Proposal Consider using `setPointerCapture` on Flutter's `hostElement` so...

engine
platform-web
P2
team-web
triaged-web

--- > [!WARNING] > Blocked by: > * https://github.com/flutter/flutter/issues/91869 --- This PR adds a `BlobStream` class that allows `cross_file` users to read large blobs from a Stream. ### Issues *...

p: cross_file

`dart:io` has a handy `ContentType` class that allows programmers to `parse` the `content-type` response header. [Docs](https://api.dart.dev/stable/2.19.1/dart-io/ContentType-class.html). It'd be nice to have this class (and other `HeaderValue`s) available through `package:http`, (or...

type-enhancement
package:http

> [!IMPORTANT] > * Depends on: https://github.com/flutter/engine/pull/51566 --- ### v2 This PR adds a `allowPlatformDefault` method to the `PointerScrollEvent` so the framework can notify the engine when it's ignoring those...

framework
f: scrolling
f: gestures

### Steps to reproduce 1. Create a demo Flutter app using the latest bootstrap, using the following `flutter_bootstrap.js` ```js {{flutter_js}} {{flutter_build_config}} _flutter.loader.load({ config: { renderer: 'canvaskit', }, }); ``` 2....

tool
platform-web
e: flutter.js

I'm trying to listen to the `cancel` event of an `HTMLInputElement`, and instead of using the `.oncancel` setter directly: * https://github.com/dart-lang/web/blob/51e594b35b516b8678825e27e2f2d8051a594a57/lib/src/dom/html.dart#L499-L500 I'm trying to add an `onCancel` stream to an...