@hackage brick0.1

A declarative terminal user interface library

Write terminal applications painlessly with brick! You write an event handler and a drawing function and the library does the rest.

module Main where

import Brick.Main (simpleMain)
import Brick.Widgets.Core (Widget, str)

ui :: Widget
ui = str "Hello, world!"

main :: IO ()
main = simpleMain ui

To get started, see:

This package deprecates vty-ui.