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
2 changes: 2 additions & 0 deletions packages/flutter/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@
### BREAKING CHANGES

* The minimum required Dart SDK version is 2.18.0 ([#867](https://github.com/parse-community/Parse-SDK-Flutter/pull/867))
* The deprecated parameter `vsync` from `AnimatedSize` is removed. ([#864](https://github.com/parse-community/Parse-SDK-Flutter/pull/864))

### Bug Fixes

* Incorrect Dart and Flutter SDKs compatibility range ([#867](https://github.com/parse-community/Parse-SDK-Flutter/pull/867))
* Remove deprecated parameter `vsync` from `AnimatedSize` ([#864](https://github.com/parse-community/Parse-SDK-Flutter/pull/864))

## [4.0.0](https://github.com/parse-community/Parse-SDK-Flutter/compare/flutter-3.1.4...flutter-4.0.0) (2023-03-19)

Expand Down
5 changes: 1 addition & 4 deletions packages/flutter/lib/src/utils/parse_live_list.dart
Original file line number Diff line number Diff line change
Expand Up @@ -219,8 +219,7 @@ class ParseLiveListElementWidget<T extends sdk.ParseObject>
}

class _ParseLiveListElementWidgetState<T extends sdk.ParseObject>
extends State<ParseLiveListElementWidget<T>>
with SingleTickerProviderStateMixin {
extends State<ParseLiveListElementWidget<T>> {
late sdk.ParseLiveListElementSnapshot<T> _snapshot;
StreamSubscription<T>? _streamSubscription;

Expand Down Expand Up @@ -272,8 +271,6 @@ class _ParseLiveListElementWidgetState<T extends sdk.ParseObject>
sizeFactor: widget.sizeFactor,
child: AnimatedSize(
duration: widget.duration,
// ignore: deprecated_member_use
vsync: this,
child: widget.childBuilder(context, _snapshot),
),
);
Expand Down
2 changes: 1 addition & 1 deletion packages/flutter/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: parse_server_sdk_flutter
description: The Flutter SDK for Parse Platform (https://parseplatform.org)
version: 4.0.0
version: 5.0.0
homepage: https://github.com/parse-community/Parse-SDK-Flutter

environment:
Expand Down