Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 1.0.8
* Docs: Fix typo in README usage section

## 1.0.7
* Fix: This widget has been unmounted, so the State no longer has a context (and should be considered defunct).

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ A set of abstractions, utilities inspired from Android Jetpack 🚀 to help mana

<p>
<a href="https://github.com/praja/jetpack/blob/main/LICENSE"><img src="https://img.shields.io/badge/LICENSE-BSD%203-green" /></a>
<a href="https://pub.dev/packages/jetpack"><img src="https://img.shields.io/badge/pub-v1.0.7-blue" /></a>
<a href="https://pub.dev/packages/jetpack"><img src="https://img.shields.io/badge/pub-v1.0.8-blue" /></a>
</p>

## Features
Expand Down Expand Up @@ -42,7 +42,7 @@ You can access your `CounterViewModel` anywhere using `BuildContext` as describe
```dart
@override
Widget build(BuildContext context) {
final CounterViewModel viewModel = context.viewModel();
final CounterViewModel viewModel = context.getViewModel();
}
```

Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: jetpack
description: A set of abstractions, utilities inspired from android Jetpack to help manage state in flutter applications.
version: 1.0.7
version: 1.0.8
homepage: https://github.com/praja/jetpack

environment:
Expand Down
Loading