dartea 0.6.1 dartea: ^0.6.1 copied to clipboard
A simple engine to run Model-View-Update (or TEA) apps in Flutter.
[0.6.1] - 30.11.2018 #
- Fix issue when
DarteaMessagesBus
emmits error because wrong type of events was dispatched.
[0.6.0] - 25.10.2018 #
- Multi-program application support (see
ProgramWidget
and Github client example). - Communication between programs using
DarteaMessagesBus
(see Github client example) - Auto save/restore model using
DarteaStorageKey
. - Bug fixing.
[0.5.5] - 27.07.2018 #
- Support Dart2
- Upgrade
async
package version to 2.0.7
[0.5.2] - 24.05.2018 #
- Fix dependencies issue
[0.5.0] - 15.05.2018 #
- Removed
TArg
fromPrgram
andInit
. All arguments forinit
function should be captured in closure. - Changed
Subscription
mechamism.- new
TSub
type-parameter forProgram
. It's object for holding and managing subscription (likeStreamSubscription
). subscription
function is now called right after everyupdate
.subscription
is notCmd
anymore.
- new
- Added new mechamism for reacting on application lifecycle events.
[0.0.2] - 23.04.2018 #
- New API. Now every Program is a stateful Widget.
- Added Multiprogram app support (Programs composition, built-in Flutter navigation)
[0.0.1] - 11.04.2018 #
- Initial implementation.