brick/programs/TableDemo.hs
Jonathan Daugherty c6a112e1a0 Table: improve API
2021-01-31 19:19:16 -08:00

26 lines
560 B
Haskell

{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE CPP #-}
module Main where
#if !(MIN_VERSION_base(4,11,0))
import Data.Monoid ((<>))
#endif
import Brick
import Brick.Widgets.Table
ui :: Widget ()
ui = renderTable myTable
myTable :: Table ()
myTable =
alignCenter 1 $
alignRight 2 $
table [ [txt "Left", txt "Center", txt "Right"]
, [txt "X", txt "Some things", txt "A"]
, [txt "Y", txt "are", txt "B"]
, [txt "Z", txt "centered", txt "C"]
]
main :: IO ()
main = simpleMain ui