mirror of
https://github.com/rivo/tview.git
synced 2024-11-17 03:26:09 +00:00
19 lines
385 B
Go
19 lines
385 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
|
||
|
"github.com/gdamore/tcell"
|
||
|
"github.com/rivo/tview"
|
||
|
)
|
||
|
|
||
|
// End shows the final slide.
|
||
|
func End(nextSlide func()) (title string, content tview.Primitive) {
|
||
|
textView := tview.NewTextView().SetDoneFunc(func(key tcell.Key) {
|
||
|
nextSlide()
|
||
|
})
|
||
|
url := "https://github.com/rivo/tview"
|
||
|
fmt.Fprint(textView, url)
|
||
|
return "End", Center(len(url), 1, textView)
|
||
|
}
|