David Iglesias

Results 302 comments of David Iglesias

> So, flutter-web is not using disablePictureInPicture but a magic way to disable PIP? No, see [the code](https://github.com/flutter/packages/blob/d2705fb82b2605633e8528c053148128cc202327/packages/video_player/video_player_web/lib/src/video_player.dart#L246-L248), it's using `disablePictureInPicture`. What I'm saying is that **the option is not...

I'm going to look at this next; focusing first on the `wheel` event, which for web desktop may cover 99% of the cases. As for other events, one idea that...

I have two RFC PRs to make `wheel` events from the browser "ignorable" by the framework, so the web engine conditionally calls `preventDefault` on them. The current solution is focused...

> On native web nested scrolling, this doesn't seem to be the case. Good feedback! I did test the touchpad on my mac, but haven't tried to _fling_ the page....

@The-RootCause my implementation is not fixing #69529, it's just dealing with `wheel` scroll events. Gesture recognition is slightly different.

@Garoth full-screening the Flutter view is a cool feature!

@Garoth looking at your code, I **think** this PR may be relevant to you: * https://github.com/flutter/engine/pull/53647

@nickolasdzemian does your browser reach 120hz in other, non-flutter web sites? For example this is a good test for fps: https://testufo.com Flutter Web does not have any FPS cap, so...

> I don't understand why non-flutter web sites have a smooth scrolling and a simple flutter app in web is so laggy The technical reason for this is that "normal"...

AT LAST! This is great news, thanks for bringing it up! --- From [the Reddit comment](https://www.reddit.com/r/iOSBeta/comments/1dnkxlx/comment/la6o59v/): > You must turn off the “prefer page rendering updates near 60fps” **feature flag.**...