mirror of
https://github.com/rive-app/rive-flutter.git
synced 2025-05-19 22:36:51 +08:00
Release flutter 0.13.9
Diffs= 2de19d657 Release flutter 0.13.9 (#7499) 1adf3dbf4 disable fallback font during artboard rendering (#7480) Co-authored-by: Gordon <pggordonhayes@gmail.com>
This commit is contained in:
@ -1 +1 @@
|
||||
6f29a9c0c368f94a38e8077343359fdaa97663e6
|
||||
2de19d65708581066677772051e7db2ebe056ff0
|
||||
|
@ -1,3 +1,8 @@
|
||||
## 0.13.9
|
||||
- Preperation for data binding ([databinding](https://github.com/rive-app/rive-flutter/commit/6ceb7a544e7124d303259f7d032641e5b38f7fc1), [data binding data context](https://github.com/rive-app/rive-flutter/commit/6d002300a6f0fd19f6dacac58a499ccc903a214d), [databinding add boolean](https://github.com/rive-app/rive-flutter/commit/90b8c81f0e496502b70db4d550341f5acabbbea6)).
|
||||
- Layout fixes and improvements ([animations for layouts](https://github.com/rive-app/rive-flutter/commit/8068e48eb2faa2a13eab1ba858b4e0737cf0265b), [layout UX fixes](https://github.com/rive-app/rive-flutter/commit/21bd3765ddc3ef8c3b1f0199f75eae21434cf52b)).
|
||||
- Android example project [fix](https://github.com/rive-app/rive-flutter/commit/9951f912df4c6f0574f57d5a152cd36e6ad2d7e0).
|
||||
|
||||
## 0.13.8
|
||||
- Add `key` property to `Rive` widget.
|
||||
- Nested linear animations report events up to parent artboards. Previously, only nested state machines could report events so that listeners in parent artboards could listen for them.
|
||||
|
@ -8,6 +8,7 @@ import 'package:rive_common/utilities.dart';
|
||||
|
||||
export 'package:rive/src/generated/data_bind/data_bind_context_base.dart';
|
||||
|
||||
// ignore: one_member_abstracts
|
||||
abstract class DataBindContextInterface {
|
||||
bool addDirt(int value, {bool recurse = false});
|
||||
}
|
||||
|
@ -24,9 +24,6 @@ class DataEnum extends DataEnumBase {
|
||||
super.onRemoved();
|
||||
}
|
||||
|
||||
@override
|
||||
void splitKeyValuesChanged(bool from, bool to) {}
|
||||
|
||||
void removeValue(DataEnumValue item) {
|
||||
children.remove(item);
|
||||
}
|
||||
|
@ -9,9 +9,6 @@ class DataEnumValue extends DataEnumValueBase {
|
||||
@override
|
||||
void keyChanged(String from, String to) {}
|
||||
|
||||
@override
|
||||
void enumIdChanged(int from, int to) {}
|
||||
|
||||
@override
|
||||
void onAdded() {}
|
||||
|
||||
|
@ -3,9 +3,6 @@ import 'package:rive/src/generated/viewmodel/viewmodel_instance_list_item_base.d
|
||||
export 'package:rive/src/generated/viewmodel/viewmodel_instance_list_item_base.dart';
|
||||
|
||||
class ViewModelInstanceListItem extends ViewModelInstanceListItemBase {
|
||||
@override
|
||||
void instanceListIdChanged(int from, int to) {}
|
||||
|
||||
@override
|
||||
void viewModelIdChanged(int from, int to) {}
|
||||
|
||||
|
@ -8,7 +8,4 @@ class ViewModelProperty extends ViewModelPropertyBase {
|
||||
|
||||
@override
|
||||
void onAdded() {}
|
||||
|
||||
@override
|
||||
void propertyOrderChanged(int from, int to) {}
|
||||
}
|
||||
|
@ -3,9 +3,6 @@ import 'package:rive/src/generated/viewmodel/viewmodel_property_enum_base.dart';
|
||||
export 'package:rive/src/generated/viewmodel/viewmodel_property_enum_base.dart';
|
||||
|
||||
class ViewModelPropertyEnum extends ViewModelPropertyEnumBase {
|
||||
@override
|
||||
void splitKeyValuesChanged(bool from, bool to) {}
|
||||
|
||||
@override
|
||||
void enumIdChanged(int from, int to) {}
|
||||
}
|
||||
|
@ -1,5 +1,5 @@
|
||||
name: rive
|
||||
version: 0.13.8
|
||||
version: 0.13.9
|
||||
homepage: https://rive.app
|
||||
description: Rive Flutter Runtime. This package provides runtime functionality for playing back and interacting with animations built with the Rive editor available at https://rive.app.
|
||||
repository: https://github.com/rive-app/rive-flutter
|
||||
|
Reference in New Issue
Block a user