cursorEnd moves the cursor to the end of the input field and returns whether the cursor should blink should reset.
()
| 262 | // cursorEnd moves the cursor to the end of the input field and returns whether |
| 263 | // the cursor should blink should reset. |
| 264 | func (m *TextInputModel) cursorEnd() bool { |
| 265 | return m.setCursor(len(m.value)) |
| 266 | } |
| 267 | |
| 268 | // Focused returns the Focus state on the model. |
| 269 | func (m TextInputModel) Focused() bool { |