Skip to content

Releases: praja/jetpack

v1.0.7

12 Sep 10:18
9f97215
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.0.5...v1.0.7

v1.0.5

09 Jul 13:09
201ffea
Compare
Choose a tag to compare

Fix EventListener not consuming events that were emitted before the widget is added to the tree

Full Changelog: v1.0.4...v1.0.5

v1.0.4

13 Dec 12:06
5963460
Compare
Choose a tag to compare

What's Changed

  • Update installation, usage and setup in README

Full Changelog: v1.0.3...v1.0.4

v1.0.3

01 Sep 10:53
8b41086
Compare
Choose a tag to compare

What's Changed

  • fix: avoid setState be called inside initState of LiveDataBuilder by @okmanideep in #4

Full Changelog: v1.0.2...v1.0.3

v1.0.2

09 Jun 14:17
Compare
Choose a tag to compare

Fixes

  • Fix ERROR: Concurrent modification during iteration: _Set if LiveData observer is removed during notify

v1.0.1

27 May 15:03
Compare
Choose a tag to compare

Fixes

  • Made context.viewModelProvider.get() safe to call in StatefulWidget.initState() and anywhere you can access context
  • Removed deprecation for context.viewModelProvider as there are valid use cases for it like a GlobalViewModelProvider etc.

v1.0.0

27 May 14:30
Compare
Choose a tag to compare

💫 New

  • More optimal context.getViewModel() and ViewModelProvider.of(context) methods to acquire ViewModel
  • Acquiring a ViewModel is now safe in StatefulWidget.initState()

⚠️ Deprecated

  • context.viewModelProvider.get() - Use context.getViewModel() or ViewModelProvider.of(context) instead

v0.1.3

14 Mar 10:09
099bdf8
Compare
Choose a tag to compare

What's Changed

  • Add EventListener and EventQueue for UI Events by @okmanideep in #2

Full Changelog: v0.1.2...v0.1.3

v0.1.2

13 Mar 13:25
7424a1b
Compare
Choose a tag to compare
  • Fixes diagram in viewmodel documentation

v0.1.1

08 Mar 07:35
d3a5891
Compare
Choose a tag to compare

💫 New

  • example published to pub.dev