Tutorial 20
Write some static content.
Example
// Copyright (c) 2025 worldiety GmbH
//
// This file is part of the NAGO Low-Code Platform.
// Licensed under the terms specified in the LICENSE file.
//
// SPDX-License-Identifier: Custom-License
package main
import (
"fmt"
"go.wdy.de/nago/application"
"go.wdy.de/nago/presentation/core"
. "go.wdy.de/nago/presentation/ui"
"go.wdy.de/nago/presentation/ui/alert"
"go.wdy.de/nago/web/vuejs"
"io"
"time"
)
func main() {
application.Configure(func(cfg *application.Configurator) {
cfg.SetApplicationID("de.worldiety.tutorial")
cfg.Serve(vuejs.Dist())
cfg.RootView(".", func(wnd core.Window) core.View {
return VStack(
alert.BannerMessages(wnd),
PrimaryButton(func() {
wnd.ImportFiles(core.ImportFilesOptions{
Multiple: true,
OnCompletion: func(files []core.File) {
for _, file := range files {
r, err := file.Open()
if err != nil {
alert.ShowBannerError(wnd, err)
return
}
defer r.Close()
time.Sleep(time.Second)
if _, err := io.Copy(io.Discard, r); err != nil {
alert.ShowBannerError(wnd, err)
return
}
fmt.Println(file.Name())
}
alert.ShowBannerMessage(wnd, alert.Message{
Title: "super",
Message: "das hat vll. geklappt",
Intent: alert.IntentOk,
})
},
})
}).Title("Select Files"),
).Frame(Frame{}.MatchScreen())
})
}).Run()
}
Info
More static content.