Description
Currently we have two UI elements:
- Confirm
func Confirm(message string, defaultParam bool) (bool, error)
- Select
func Select(message string, options []string) (int, error)
#1881 (comment)
When changing from "survey" to "pterm", we could decorate some more items in the UI such as:
- Table
func Table(headers []string, rows [][]string) error
$ _output/bin/limactl list --format=fancy
https://examples.pterm.sh/
WDYT?
Description
Currently we have two UI elements:
func Confirm(message string, defaultParam bool) (bool, error)func Select(message string, options []string) (int, error)#1881 (comment)
When changing from "survey" to "pterm", we could decorate some more items in the UI such as:
func Table(headers []string, rows [][]string) errorhttps://examples.pterm.sh/
WDYT?