forked from tslocum/cview
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
845 B
14 lines
845 B
package main |
|
|
|
import "git.sr.ht/~tslocum/cview" |
|
|
|
// Introduction returns a cview.List with the highlights of the cview package. |
|
func Introduction(nextSlide func()) (title string, content cview.Primitive) { |
|
list := cview.NewList(). |
|
AddItem("A Go package for terminal based UIs", "with a special focus on rich interactive widgets", '1', nextSlide). |
|
AddItem("Based on github.com/gdamore/tcell", "Like termbox but better (see tcell docs)", '2', nextSlide). |
|
AddItem("Designed to be simple", `"Hello world" is 5 lines of code`, '3', nextSlide). |
|
AddItem("Good for data entry", `For charts, use "termui" - for low-level views, use "gocui" - ...`, '4', nextSlide). |
|
AddItem("Extensive documentation", "Everything is documented, examples in GitHub wiki, demo code for each widget", '5', nextSlide) |
|
return "Introduction", Center(80, 10, list) |
|
}
|
|
|