@hackage typed-gui0.1.0.0
GUI framework based on typed-fsm
Categories
License
MIT
Maintainer
shangdizhixia1993@163.com
Links
Versions
- 0.1.0.0 Sun, 4 Aug 2024
Installation
Dependencies (6)
- base ^>=4.20.0.0
- mtl >=2.3.1 && <2.4
- singletons-base >=3.4 && <3.5
- stm >=2.5.3 && <2.6
- threepenny-gui >=0.9.4 && <0.10
- typed-fsm >=0.3.0 && <0.4 Show all…
Dependents (0)
GUI framework based on typed-fsm.
Similar to the elm architecture, the difference is that typed-gui separates control status and data status.
There are at least three advantages to doing this.
The type of the View part has a clear control state, which can limit the type of Message and avoid sending error messages.
The Update part can give full play to the advantages of typed-fsm, and typed-fsm takes over the entire control flow.
Extract the common part and simplify the control state.