File tree Expand file tree Collapse file tree 3 files changed +4
-5
lines changed
Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 33### BREAKING CHANGES
44
55* The minimum required Dart SDK version is 2.18.0 ([ #867 ] ( https://github.com/parse-community/Parse-SDK-Flutter/pull/867 ) )
6+ * The deprecated parameter ` vsync ` from ` AnimatedSize ` is removed. ([ #864 ] ( https://github.com/parse-community/Parse-SDK-Flutter/pull/864 ) )
67
78### Bug Fixes
89
910* Incorrect Dart and Flutter SDKs compatibility range ([ #867 ] ( https://github.com/parse-community/Parse-SDK-Flutter/pull/867 ) )
11+ * Remove deprecated parameter ` vsync ` from ` AnimatedSize ` ([ #864 ] ( https://github.com/parse-community/Parse-SDK-Flutter/pull/864 ) )
1012
1113## [ 4.0.0] ( https://github.com/parse-community/Parse-SDK-Flutter/compare/flutter-3.1.4...flutter-4.0.0 ) (2023-03-19)
1214
Original file line number Diff line number Diff line change @@ -219,8 +219,7 @@ class ParseLiveListElementWidget<T extends sdk.ParseObject>
219219}
220220
221221class _ParseLiveListElementWidgetState <T extends sdk.ParseObject >
222- extends State <ParseLiveListElementWidget <T >>
223- with SingleTickerProviderStateMixin {
222+ extends State <ParseLiveListElementWidget <T >> {
224223 late sdk.ParseLiveListElementSnapshot <T > _snapshot;
225224 StreamSubscription <T >? _streamSubscription;
226225
@@ -272,8 +271,6 @@ class _ParseLiveListElementWidgetState<T extends sdk.ParseObject>
272271 sizeFactor: widget.sizeFactor,
273272 child: AnimatedSize (
274273 duration: widget.duration,
275- // ignore: deprecated_member_use
276- vsync: this ,
277274 child: widget.childBuilder (context, _snapshot),
278275 ),
279276 );
Original file line number Diff line number Diff line change 11name : parse_server_sdk_flutter
22description : The Flutter SDK for Parse Platform (https://parseplatform.org)
3- version : 4 .0.0
3+ version : 5 .0.0
44homepage : https://github.com/parse-community/Parse-SDK-Flutter
55
66environment :
You can’t perform that action at this time.
0 commit comments