termui
termui copied to clipboard
Golang terminal dashboard
`style_parser.go` implements a special feature where `[` and `]` characters are used to separate styled text. https://github.com/gizak/termui/blob/f976fe697aa09b747f16fa6e08c36dde5fb16f27/style_parser.go#L19-L20 https://github.com/gizak/termui/blob/f976fe697aa09b747f16fa6e08c36dde5fb16f27/style_parser.go#L105-L112 Which ends up [cropping the text](https://github.com/quantumsheep/sshs/issues/5#issue-1125665831): Is there a way to disable...
There is a problem with using [ or ] in text. Style Parser thinks you are going to supply a (style) block after and eats some of the chars: https://github.com/gizak/termui/issues/311...
The way to set the positions of widgets is through the x1 y1 coordinates in func (*Block) [SetRect](https://github.com/gizak/termui/blob/v3.1.0/v3/block.go#L92): ```go p := widgets.NewParagraph() p.Title = "Lunar" p.Text = selectedAudio p.SetRect(0, 0,...
Same as `RowSeparator` but controls whether the column separators are drawn. Useful for creating transparent tables
The 'Symbols for Legacy Computing' block in Unicode has many symbols in its 'Smooth mosaic terminal graphic characters' section to represent shapes of graphs as text characters. https://www.unicode.org/charts/PDF/U1FB00.pdf Termui could...
Hi. Im new to this library and I am testing it out right now. When I copy the demo projects and run them it works but I only get "basic"...
I changed it slightly using the sample file grid.go , the boxes in the grid are not aligned at 1/2 column ``` grid.Set( ui.NewRow(1.0/2, ui.NewCol(1.0/2, slg), ui.NewCol(1.0/2, lc), ), ui.NewRow(1.0/2,...
Hello, I've added Form as a widget based on Paragraph. Happy to get some featback on this :)