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 tried running on ubuntu 24.04 and the binary fails to find the libraries ``` error while loading shared libraries: libwebkit2gtk-4.0.so.37: cannot open shared object file: No such file or...

Is it possible to add a few functions to control the webview form, such as: full screen display (hidden title bar).

` PS D:\gitee.com\go\go-webview> go build -ldflags="-H windowsgui" # github.com/webview/webview_go In file included from D:/goRely/goPath/pkg/mod/github.com/webview/[email protected]/libs/webview/include/webview.h:2076, from webview.cc:1: D:/goRely/goPath/pkg/mod/github.com/webview/[email protected]/libs/mswebview2/include/WebView2.h:978:10: fatal error: EventToken.h: No such file or directory #include "EventToken.h" ^~~~~~~~~~~~~~ compilation terminated....

this program works: ~~~go package main import "github.com/webview/webview_go" func main() { w := webview.New(false) defer w.Destroy() w.Navigate("http://example.com") w.Run() } ~~~ but how can I get the response headers from the...

can not build when running the command `GOOS=darwin GOARCH=amd64 go build ` error: `github.com/webview/webview_go: build constraints exclude all Go files in /Users/pritishmishra/go/pkg/mod/github.com/webview/[email protected]` but the go build command works. if I...

I am encountering a segfault very inconsistently and rarely right after calling Evaluate in a Dispatch callback. I have following code that gets run from a separate goroutine from the...

GOOS=windows GOARCH=amd64 go build -ldflags="-H windowsgui" main.go but error why ? ``` github.com/webview/webview_go: build constraints exclude all Go files in /home/go/pkg/mod/github.com/webview/[email protected]

The execution order on Windows is weird. ## Example 1 ```go package main import ( "fmt" webview "github.com/webview/webview_go" ) func main() { view := webview.New(true) defer view.Destroy() view.SetTitle("Basic Example") view.SetSize(480,...

How do I set the remote debugging port