brick/programs/FillDemo.hs
2018-08-04 20:19:16 -07:00

16 lines
371 B
Haskell

module Main where
import Brick
import Brick.Widgets.Border
ui :: Widget ()
ui = vBox [ vLimitPercent 20 $ vBox [ str "This text is at the top."
, fill ' '
, hBorder
]
, str "This text is at the bottom."
]
main :: IO ()
main = simpleMain ui