简体中文
selection
TIP
selection 顾名思义,就是提供选择框。
original demo
这是一个最原始的demo,直接使用startUp
启动 selection
。
代码
go
package main
import "github.com/fzdwx/infinite/components"
func main() {
choices := []string{"a", "b", "c", "d"}
c := components.NewSelection(choices)
if err := components.NewStartUp(c).Start(); err != nil {
panic(err)
}
}
它默认提供 过滤 以及 多选,所以接下来我们直接介绍multi select
。