Joshua Sosso
Joshua Sosso
If anyone else needs a workaround. I got around this by running the following `webViewController?.runJavascript("window.scrollTo(0, 0);")` after the page has been loaded. I also had to delay the javascript execution...
This issue happens to be me very consistently on webview_flutter version `4.0.1`. Both `onPageStarted()` and `onPageLoaded()` do not fire in release or profile mode. In debug mode everything works as...
@adeyahya I know there's alot here so lemme know if anything needs to be reverted or changed. For example I imagine the yarn > pnpm change might break some CI...
Okay I've determined the issue. It turns out the listhen cli does some magic to assign the websocket hooks from the h3 app handler. The raw `listen` function doesn't do...
Hmm, so then I think the main thing that needs to be fixed is updating the exported `ListenOptions` type Right now `ws` accepts `boolean`, `CrossWSOptions`, or `((req: IncomingMessage, head: Buffer)...
Okay sure. That would create a more seamless dev experience! I suppose the only blocker for what I wrote in https://github.com/unjs/listhen/issues/174#issuecomment-2094799544 is that it has access to the original H3...
Hey I've been testing out these changes and I have a couple suggestions. To start, I think http2 is something developers should be able to manually toggle on/off. I also...
Hey @Mastercuber thanks so much for making this change. I tested it out and it works for my use case (cleartext http2 from a server to a proxy sitting in...
@Mastercuber Okay so I spent quite a bit of time trying to figure out how to get it working and I came to the conclusion that it's not worth handling...
With the recent websocket support passing both `--ws` and `--http2` causes websocket connections to fail. It only works if you also have `--https` added as well. So basically: ```bash #...