File tree 3 files changed +4
-5
lines changed
3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 3
3
### BREAKING CHANGES
4
4
5
5
* 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 ) )
6
7
7
8
### Bug Fixes
8
9
9
10
* 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 ) )
10
12
11
13
## [ 4.0.0] ( https://github.com/parse-community/Parse-SDK-Flutter/compare/flutter-3.1.4...flutter-4.0.0 ) (2023-03-19)
12
14
Original file line number Diff line number Diff line change @@ -219,8 +219,7 @@ class ParseLiveListElementWidget<T extends sdk.ParseObject>
219
219
}
220
220
221
221
class _ParseLiveListElementWidgetState <T extends sdk.ParseObject >
222
- extends State <ParseLiveListElementWidget <T >>
223
- with SingleTickerProviderStateMixin {
222
+ extends State <ParseLiveListElementWidget <T >> {
224
223
late sdk.ParseLiveListElementSnapshot <T > _snapshot;
225
224
StreamSubscription <T >? _streamSubscription;
226
225
@@ -272,8 +271,6 @@ class _ParseLiveListElementWidgetState<T extends sdk.ParseObject>
272
271
sizeFactor: widget.sizeFactor,
273
272
child: AnimatedSize (
274
273
duration: widget.duration,
275
- // ignore: deprecated_member_use
276
- vsync: this ,
277
274
child: widget.childBuilder (context, _snapshot),
278
275
),
279
276
);
Original file line number Diff line number Diff line change 1
1
name : parse_server_sdk_flutter
2
2
description : The Flutter SDK for Parse Platform (https://parseplatform.org)
3
- version : 4 .0.0
3
+ version : 5 .0.0
4
4
homepage : https://github.com/parse-community/Parse-SDK-Flutter
5
5
6
6
environment :
You can’t perform that action at this time.
0 commit comments