fyne GUI 编译为 Web Assembly 失败

fyne GUI compile to Web Assembly failed

我正在检查使用 Web Assembly 在浏览器中使用 fyne 的可能性,但我收到错误...
main.go :

package main

import (
    "fyne.io/fyne/v2/app"
    "fyne.io/fyne/v2/container"
    "fyne.io/fyne/v2/widget"
)

func main() {
    a := app.New()
    w := a.NewWindow("Hello")

    hello := widget.NewLabel("Hello Fyne!")
    w.SetContent(container.NewVBox(
        hello,
        widget.NewButton("Hi!", func() {
            hello.SetText("Welcome :)")
        }),
    ))

    w.ShowAndRun()
}

i 运行 这个命令,

GOOS=js GOARCH=wasm go build -o main.wasm main.go 

输出(错误):

package command-line-arguments
    imports fyne.io/fyne/v2/app
    imports fyne.io/fyne/v2/internal/driver/glfw
    imports fyne.io/fyne/v2/internal/driver/common
    imports fyne.io/fyne/v2/internal/painter/gl
    imports github.com/go-gl/gl/v3.2-core/gl: build constraints exclude all Go files in /home/ahmed/go/pkg/mod/github.com/go-gl/gl@v0.0.0-20210813123233-e4099ee2221f/v3.2-core/gl

Fyne 尚不支持网络组装或通过浏览器交付。您可以观看我们上周在 FyneConf 上发布的技术预览视频,了解这项工作的最新进展。 https://youtu.be/t8gEzPujIVI

在浏览器中 运行 的功能正在测试中。您可以使用 Fyne develop 分支并安装该版本的 fyne 工具,然后 运行:

$ fyne serve

它将通过端口 :8080 上的 Web 服务器加载您的 Fyne 应用程序。