15 lines
357 B
Go
Raw Normal View History

2023-08-17 23:10:09 +00:00
package editor
import (
"github.com/gdamore/tcell/v2"
"github.com/rivo/tview"
)
func New(app *tview.Application) *tview.TextArea {
view := tview.NewTextArea()
view.SetBackgroundColor(tcell.ColorDefault)
view.SetTextStyle(tcell.StyleDefault)
view.SetText("Having been erased,\nThe document you're seeking\nMust now be retyped.", true)
return view
}