Skip to content

Commit

Permalink
Merge pull request #69 from Dash-Kit/release/4.3.0
Browse files Browse the repository at this point in the history
Release 4.3.0
  • Loading branch information
w3ggy authored Mar 25, 2024
2 parents ec30343 + 02c1f99 commit 3539be6
Show file tree
Hide file tree
Showing 12 changed files with 307 additions and 236 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
uses: flutter-actions/setup-flutter@v2
with:
channel: stable
version: 3.13.5
version: 3.19.4

- name: Install dependencies
run: flutter pub get
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
uses: flutter-actions/setup-flutter@v2
with:
channel: stable
version: 3.13.5
version: 3.19.4

- name: Analyze
run: flutter analyze
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [4.3.0]

- Bump dependencies
- Breaking changes in async_redux package
- BREAKING CHANGE: `backgroundColor` property in Loadable widgets now uses `Theme.of(context).colorScheme.background by default

## [4.2.0]

- Bump dependencies
Expand Down
4 changes: 2 additions & 2 deletions example/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ class _MyHomePageState extends State<MyHomePage> {

Future<void> _onLoginPressed() async {
return context
.dispatch(
.dispatchAndWait(
LoginAction(
email: _emailController.text,
password: _passwordController.text,
Expand Down Expand Up @@ -120,7 +120,7 @@ class _MyHomePageState extends State<MyHomePage> {

void _openSuccessDialog() {
final state = StoreProvider.state<AppState>(context);
final userName = state!.profileState.name;
final userName = state.profileState.name;

showDialog(
context: context,
Expand Down
Loading

0 comments on commit 3539be6

Please sign in to comment.