brick/programs/FillDemo.hs

13 lines
207 B
Haskell
Raw Normal View History

2017-08-03 01:55:09 +03:00
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