Golang GUI for nuxui — HelloWorld

nuxui · 2022-07-31 01:55:23 · 1775 次点击 · 预计阅读时间 1 分钟 · 大约8小时之前 开始浏览    
这是一个创建于 2022-07-31 01:55:23 的文章,其中的信息可能已经有所发展或是发生改变。

仓库:https://gitee.com/nuxui/nuxui 例子:https://gitee.com/nuxui/samples

创建 hello 项目

mkdir hello
cd hello

创建 main.go 并编写

package main

import (
    "nuxui.org/nuxui/nux"
    _ "nuxui.org/nuxui/ui"
)

func main() {
    nux.Run(nux.NewWindow(nux.Attr{
        "width":  "20%", // screen_width x 20%
        "height": "2:1", // width : height = 2 : 1
        "title":  "hello",
        "content": nux.Attr{
            "type": "nuxui.org/nuxui/ui.Text",
            "text": `Hello nuxui`,
        },
    }))

}

更新依赖

go mod init example.com/my/hello
go mod tidy

编译并运行

go build . && ./hello

结果预览


有疑问加站长微信联系(非本文作者))

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

1775 次点击  
加入收藏 微博
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传