You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tview/demos/presentation/end.go

21 lines
473 B
Go

package main
import (
"fmt"
"github.com/gdamore/tcell/v2"
"github.com/rivo/tview"
)
// End shows the final slide.
func End(nextSlide func()) (title string, content tview.Primitive) {
textView := tview.NewTextView().
SetDynamicColors(true).
SetDoneFunc(func(key tcell.Key) {
nextSlide()
})
url := "[:::https://github.com/rivo/tview]https://github.com/rivo/tview"
fmt.Fprint(textView, url)
return "End", Center(tview.TaggedStringWidth(url), 1, textView)
}