Skip to content

Commit

Permalink
chore: v0.0.1-dev.2
Browse files Browse the repository at this point in the history
  • Loading branch information
felangel committed Oct 14, 2020
1 parent 924a8f2 commit 85d92cc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.0.1-dev.2

- feat!: remove explicit `FlowController` from `builder`

# 0.0.1-dev.1

- feat: initial release of `FlowBuilder`
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class Profile extends Equatable {
```dart
FlowBuilder<Profile>(
state: const Profile(),
builder: (context, profile, controller) {
builder: (context, profile) {
return [
MaterialPage(child: NameForm()),
if (profile.name != null) MaterialPage(child: AgeForm()),
Expand Down

0 comments on commit 85d92cc

Please sign in to comment.