added main learning file

This commit is contained in:
Kashif Shah 2023-05-21 16:25:41 -05:00
parent 5c73462f36
commit c079a800f6
1 changed files with 21 additions and 0 deletions

21
main.go Normal file
View File

@ -0,0 +1,21 @@
package main
import (
"github.com/rivo/tview"
)
func main() {
app := tview.NewApplication().
EnableMouse(true)
modal := tview.NewModal().
SetText("Do you want to quit the application?").
AddButtons([]string{"Quit", "Cancel"}).
SetDoneFunc(func(buttonIndex int, buttonLabel string) {
if buttonLabel == "Quit" {
app.Stop()
}
})
if err := app.SetRoot(modal, false).SetFocus(modal).Run(); err != nil {
panic(err)
}
}