go-webview2
go-webview2 copied to clipboard
WebView2 bindings for pure Go, without CGo, based on the webview/webview bindings.
Hi, I am trying to find a way to capture navigation events used in windows webview2 ([link](https://docs.microsoft.com/en-us/microsoft-edge/webview2/concepts/navigation-events)). I couldnt find any in the `WebView` interface, but found some events are...
I'm looking to make a small, reproducible example but am opening this issue preemptively as there's a lot of detail on the linked issue: https://github.com/wailsapp/wails/issues/1569 Crux of the issue is...
I've the below: ```go package main import ( "fmt" "log" "net/http" "os" "path/filepath" "strings" "time" "github.com/jchv/go-webview2" // go install github.com/jchv/go-webview2@latest ) func main() { w := webview2.NewWithOptions(webview2.WebViewOptions{ Window: nil, Debug:...
Can you webview2 to show how to use the API call functions in the devtools? How to get up and down in the websocket data in the current site? Or...
Is there an option to allow or an allow windows resizing?
how to destroy a webview? 
I have setup a mainWindow with a childwindow and use the childWindow in `NewWindow(true, childWindow)`. when running the app I get a blank window with no errors in console instead...
When creating a new webview in a new window, i.e. what the demo example does, keyboard focus is set on the overarching window, and not on the document object rendered...
Hi, I have a small background application which sits in the Tray. Via menu entry there one can open a little WebView2 front-end. In this case I would like to...