mirror of
https://github.com/rivo/tview.git
synced 2024-11-15 06:12:46 +00:00
22 lines
443 B
Go
22 lines
443 B
Go
// Demo code for the Modal primitive.
|
|
package main
|
|
|
|
import (
|
|
"github.com/rivo/tview"
|
|
)
|
|
|
|
func main() {
|
|
app := tview.NewApplication()
|
|
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).Run(); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|