Closed ta3pks closed 6 years ago
if you use a par in a 12 len column the borders are perfectly aligned across the terminal but the content is invisible here is an example
p := ui.NewPar("press q to quit") ui.Body.AddRows( ui.NewRow( ui.NewCol(12, 0, p), ), ) ui.Body.Align() ui.Render(ui.Body) ui.Handle("/sys/kbd/q", func(e ui.Event) { ui.StopLoop() }) ui.Loop()
if you use a par in a 12 len column the borders are perfectly aligned across the terminal but the content is invisible here is an example