Terminal UI library with rich, interactive widgets — written in Golang
Find a file
2026-03-16 14:00:09 +01:00
.github Simplified funding button. 2022-07-03 20:23:58 +02:00
demos Chat should be slower. 2025-09-04 22:59:22 +02:00
ansi.go Fixed reset combination ANSI codes. Fixes #1081 2025-08-27 21:02:16 +02:00
application.go handle KeyCtrlJ as newline during paste 2026-03-02 06:27:26 -07:00
borders.go added configurable borders 2018-06-09 14:58:29 +02:00
box.go Simple chat application using TextView region information. 2025-09-04 22:28:53 +02:00
button.go Refactored form element handling. 2025-08-27 22:01:43 +02:00
checkbox.go Refactored tracking of TextView regions. 2025-08-31 17:05:33 +02:00
CONTRIBUTING.md Fixed multiple items in grid. Fixes #987 2024-05-19 11:23:12 +02:00
doc.go Switched to new tcell handling of the underline attribute. 2025-08-27 18:31:25 +02:00
dropdown.go Refactored form element handling. 2025-08-27 22:01:43 +02:00
flex.go New focus/blur handling, notifications for container primitives. 2025-08-27 22:01:38 +02:00
form.go Fixed disappearing buttons in some layouts. Fixes #1119 2025-09-27 14:20:39 +02:00
frame.go New focus/blur handling, notifications for container primitives. 2025-08-27 22:01:38 +02:00
go.mod Added Application.SetTitle. Resolves #1099 2025-06-25 18:43:41 +02:00
go.sum Switched to new tcell handling of the underline attribute. 2025-08-27 18:31:25 +02:00
grid.go Avoid partial transparency inside a border. 2026-03-16 14:00:09 +01:00
image.go Refactored form element handling. 2025-08-27 22:01:43 +02:00
inputfield.go Refactored form element handling. 2025-08-27 22:01:43 +02:00
LICENSE.txt Replaced license placeholders. Fixes #149 2018-08-04 11:55:25 +02:00
list.go New focus/blur handling, notifications for container primitives. 2025-08-27 22:01:38 +02:00
modal.go New focus/blur handling, notifications for container primitives. 2025-08-27 22:01:38 +02:00
pages.go Improved documentation somewhat. 2026-03-16 13:54:50 +01:00
primitive.go New focus/blur handling, notifications for container primitives. 2025-08-27 22:01:38 +02:00
README.md docs: add pago to project list in readme 2025-09-24 14:38:54 +00:00
semigraphics.go Merge pull request #910 from kianmeng/fix-typos 2023-11-02 09:08:20 +01:00
strings.go Fixed tag parsing with options. 2025-09-04 22:50:09 +02:00
styles.go Fixed the default theme to use ANSI palette colours only. 2023-08-26 18:31:47 +02:00
table.go Fixed wrong handling of transparency setting in table cells. 2026-03-10 14:32:06 +01:00
textarea.go New focus/blur handling, notifications for container primitives. 2025-08-27 22:01:38 +02:00
textview.go Simple chat application using TextView region information. 2025-09-04 22:28:53 +02:00
treeview.go New focus/blur handling, notifications for container primitives. 2025-08-27 22:01:38 +02:00
tview.gif Finished Image implementation. 2022-12-26 21:55:31 +01:00
util.go Rewrite of DropDown drawing and input handling. Bugfixes. Fixes #1061, fixes #1029, fixes #1026. 2025-03-25 18:30:46 +01:00

Rich Interactive Widgets for Terminal UIs

PkgGoDev Go Report

This Go package provides commonly used components for terminal based user interfaces.

Screenshot

Among these components are:

  • Input forms (including text input, selections, checkboxes, and buttons)
  • Navigable multi-color text views
  • Editable multi-line text areas
  • Sophisticated navigable table views
  • Flexible tree views
  • Selectable lists
  • Images
  • Grid, Flexbox and page layouts
  • Modal message windows
  • An application wrapper

They come with lots of customization options and can be easily extended to fit your needs.

Usage

To add this package to your project:

go get github.com/rivo/tview@master

Hello World

This basic example creates a box titled "Hello, World!" and displays it in your terminal:

package main

import (
	"github.com/rivo/tview"
)

func main() {
	box := tview.NewBox().SetBorder(true).SetTitle("Hello, world!")
	if err := tview.NewApplication().SetRoot(box, true).Run(); err != nil {
		panic(err)
	}
}

Check out the GitHub Wiki for more examples along with screenshots. Or try the examples in the "demos" subdirectory.

For a presentation highlighting this package, compile and run the program found in the "demos/presentation" subdirectory.

Projects using tview

Documentation

Refer to https://pkg.go.dev/github.com/rivo/tview for the package's documentation. Also check out the Wiki.

Dependencies

This package is based on github.com/gdamore/tcell (and its dependencies) as well as on github.com/rivo/uniseg.

Sponsor this Project

Become a Sponsor on GitHub to further this project!

Backwards-Compatibility

I try really hard to keep this project backwards compatible. Your software should not break when you upgrade tview. But this also means that some of its shortcomings that were present in the initial versions will remain. Having said that, backwards compatibility may still break when:

  • a new version of an imported package (most likely tcell) changes in such a way that forces me to make changes in tview as well,
  • I fix something that I consider a bug, rather than a feature, something that does not work as originally intended,
  • I make changes to "internal" interfaces such as Primitive. You shouldn't need these interfaces unless you're writing your own primitives for tview. (Yes, I realize these are public interfaces. This has advantages as well as disadvantages. For the time being, it is what it is.)

Your Feedback

Add your issue here on GitHub. Feel free to get in touch if you have any questions.

Code of Conduct

We follow Golang's Code of Conduct which you can find here.