webview_go
webview_go copied to clipboard
Go language bindings for the webview library.
Can I set frameless full-screen window, like the self-service mode?
As mentioned in https://github.com/webview/webview/issues/1120#issuecomment-2269645766, trying to use webview_go with any version but 4.0, errors: ``` go build github.com/webview/webview_go: # pkg-config --cflags -- gtk+-3.0 webkit2gtk-4.0 Package webkit2gtk-4.0 was not found in...
Trying to build the example as go module with vendored dependencies. Build fails with the following error: ``` > go build # github.com/webview/webview_go vendor\github.com\webview\webview_go\webview.go:17:10: fatal error: 'webview.h' file not found...
Getting a nil pointer deref here: https://github.com/webview/webview_go/blob/5a14030a9070b6ed97adb5eeed9a215cb58ca53d/webview.go#L217 I have no idea how to reproduce this, I've been getting this for months randomly and I can't narrow it down or reproduce...
Add new method `SetIcon` to set window icon image. Type and parameter `IconKind` allows to specify usage of icon (if supported). ```go // IconKind is used to specify usage of...
Current implementation works for Windows, for other platforms `SetIcon` do nothing. Support for all platform is WIP and will be delivered later (if accepted). See also: https://github.com/webview/webview_go/issues/46
@SteffenL Sorry for bringing this up again, because I know you have answered this question so many times: 1. https://github.com/webview/webview_go/issues/40 2. https://github.com/webview/webview_go/issues/32#issuecomment-1994886418 3. https://github.com/webview/webview_go/issues/21#issuecomment-1855110818 4. https://github.com/webview/webview_go/issues/20#issuecomment-1855112766 5. https://github.com/webview/webview_go/issues/20#issuecomment-1855114803 6. https://github.com/webview/webview_go/issues/17#issuecomment-1831236249...
Good afternoon, In my development environment, where I have the _dev_ packages installed, I can successfully compile, and the application works as expected. However, when I distribute it in production,...
### show or hide title bar example: go: `w.SetTitleBar(false)` ### hide title bar,bind `StartDragging` function to Drag window. example: go: `_ = w.Bind("dragging", w.StartDragging)` html: ` My Dragging Title Bar`...