package
0.1.0
Repository: https://github.com/gioui-plugins/gio-plugins.git
Documentation: pkg.go.dev

# README

Plugin

This package is required to interact with any other package in this repository.

You MUST use plugin.Install() in your event-loop:

for evt := range w.Events() { // Gio main event loop
+    plugin.Install(w, evt)

    switch evt := evt.(type) {
        // ...
    }
}