Layoutz 0.3.2 🪶 Zero-dep Elm-style TUI’s for Haskell - now w/ terminal plots & more
Haskell Community [Unofficial]
March 6, 2026
Yep exactly, thx for taking a peek … Elm style as in TEA/(Model - Update - View) to (re)render frames
data LayoutzApp state msg = LayoutzApp
{ appInit :: (state, Cmd msg) -- Initial state + startup command
, appUpdate :: msg -> state -> (state, Cmd msg) -- Pure state transitions
, appSubscriptions :: state -> Sub msg -- Event sources
, appView :: state -> L -- Render to UI
}
Discussion in the ATmosphere