webview_deno icon indicating copy to clipboard operation
webview_deno copied to clipboard

🌐 Deno bindings for webview, a tiny library for creating web-based desktop GUIs

Results 31 webview_deno issues
Sort by recently updated
recently updated
newest added

I copied and pasted the tutorial code into my project. But when I ran it, the window froze and eventually closed. I didn't get an error message. I'm on windows...

On MacOS M1 when I: - run `deno run -Ar --unstable https://deno.land/x/webview/examples/local.ts` - maximise the window (third button in the window titlebar) The app crashes with the message: `segmentation fault`

Full-screen API would be extremely useful. The following is my test code: ```ts import { Webview } from "https://deno.land/x/[email protected]/mod.ts"; const html = ` function testA() { document.getElementById("test").innerHTML = "Script"; document.body.requestFullscreen();...

enhancement
wontfix

My issue is that when I return a promise from the callback passed into `webview.bind`, that promise never resolves. Unless I'm missing something it seems like something is blocking the...

bug

As far as I understand, the `webview.destroy()` method should free up all resources as it should run `unbind()` once the webview window is closed. But I am getting an error...

bug

An interesting idea would be to implement and extend the `BroadcastChannel` api of all browsers and deno so that they too could interoperate. This would enable easy cross-window communication (#27)...

enhancement

Is there any interest for supporting an [universal mac binary](https://developer.apple.com/documentation/apple-silicon/building-a-universal-macos-binary)? That would essentially mean it is twice the size but works on all mac architectures, this would also mean some...

question
macos

Regarding https://github.com/webview/webview_deno/blob/main/examples/server.ts > // FIXME: Blocks the main thread and > // no further requests can be served. The code below would help fix the above problem, using worker of...

Can I somehow hide title bar and use Client-Side Decorations for my window (on Linux)?

Is it possible to make the webview window transparent instead of white ? (setting this with CSS doesn't work) Or maybe these are OS limitations ?

wontfix
future