go-glint icon indicating copy to clipboard operation
go-glint copied to clipboard

Component-based UI-framework for command-line tools. Easily create highly dynamic CLI interfaces using shared, easily testable components.

Results 2 go-glint issues
Sort by recently updated
recently updated
newest added

This is a continuation of the issue mentioned on Waypoint here: https://github.com/hashicorp/waypoint/issues/2455 Basically if your window is "small", the output from glint ends up flashing over and over making it...

Using the following code: ```go d := glint.New() d.Append( glint.Layout( gc.Spinner(), glint.Layout(glint.Text("Build site and validate links...")).MarginLeft(1), glint.Layout(gc.Stopwatch(time.Now())).MarginLeft(1), ).Row(), glint.Layout( glint.Text("multi\nline\nmessage\n"), ).Row(), ) d.Render(context.Background()) ``` Causes the following output: ``` ⠙...