brick/programs/FillDemo.hs
2017-08-02 15:55:09 -07:00

13 lines
207 B
Haskell

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