webview_go icon indicating copy to clipboard operation
webview_go copied to clipboard

Go language bindings for the webview library.

Results 21 webview_go issues
Sort by recently updated
recently updated
newest added

I can open a new window through window.open() on window, but not on linux.

No mention of this in the README, and would be good to know as I need this to work on Mobiles. There is also this golang web view that works...

Doc: `// Destroys a webview and closes the native window.` ```go package main import "github.com/webview/webview_go" const html = ` Exit ` func main() { w := webview.New(true) w.SetTitle("Bind Example") w.SetSize(480,...

@Le0Developer pointed out in #26 that `Dispatch` might need clarification when I suggested that `Dispatch` *should* be called. ```go // Dispatch posts a function to be executed on the main...

Hello, In the now depricated version of the webview bindings for go there was also support for turning the window full screen. To my surprise this feature is not implemented...

pretty straight forward. I have the following HTML: ```html Document #root { max-width: 1280px; margin: 0 auto; padding: 2rem; text-align: center; background-color: #1f1f0f; } yes document.getElementById("item").innerHTML = "generated content" ```...

GOOS=linux GOARCH=amd64 go build -o myapp-loong64 -ldflags "-s -w" main.go 编译报错误: Stderr: go build github.com/webview/webview_go: build constraints exclude all Go files in

Since this is a new module, would it be possible to update webkit2gtk to version 4.1 and replace the deprecated `webkit_web_view_run_javascript` with `webkit_web_view_evaluate_javascript`?

enhancement

Is there a way to show/hide the webview without destroying and recreating it? I would like an icon in the taskbar (like lantern systray) that when I click it, the...

This is the output: ``` # github.com/webview/webview_go vendor/github.com/webview/webview_go/webview.go:16:10: fatal error: 'webview.h' file not found #include "webview.h" ^~~~~~~~~~~ 1 error generated. ``` Do I need to install something extra?