message_inputfield.go 400 B

12345678910111213141516171819
  1. package ui
  2. import (
  3. "github.com/gdamore/tcell/v2"
  4. "github.com/rivo/tview"
  5. )
  6. func NewMessageInputField() *tview.InputField {
  7. i := tview.NewInputField()
  8. i.
  9. SetPlaceholder("Message...").
  10. SetPlaceholderTextColor(tcell.ColorWhite).
  11. SetFieldBackgroundColor(tview.Styles.PrimitiveBackgroundColor).
  12. SetTitleAlign(tview.AlignLeft).
  13. SetBorder(true).
  14. SetBorderPadding(0, 0, 1, 0)
  15. return i
  16. }