"README.md" did not exist on "d94c5aba12f33b793234438c55daa0c33768711d"
Newer
Older
package views
import (
"github.com/rivo/tview"
)
type ResultAndInputView struct {
resultAndInputView *tview.TextView
}
func NewResultAndInputView() *ResultAndInputView {
SetDynamicColors(true).
SetRegions(true).
SetScrollable(true).
SetTitle("Result").
func (rv *ResultAndInputView) GetContent() tview.Primitive {
return rv.resultAndInputView
func (rv *ResultAndInputView) SetContent(s string) {
rv.resultAndInputView.Clear()
rv.resultAndInputView.SetText(s)