mirror of
https://github.com/rive-app/rive-flutter.git
synced 2025-08-06 16:40:27 +08:00

just trying to flush through some of the bits coming out of running generate core runtime & generate core runtime without making a mess in other pr's . this is split into four commits which might be helpful when looking at the changes here. Diffs= ad72cfce5 Run generate (#5490) 7ee5f7d5a Increases the margin for the approx call to some of the wangs formula… (#5506) 2f224da7f Runtime ellipsis (#5482) Co-authored-by: Maxwell Talbot <talbot.maxwell@gmail.com>
15 lines
430 B
Dart
15 lines
430 B
Dart
/// Core automatically generated
|
|
/// lib/src/generated/container_component_base.dart.
|
|
/// Do not modify manually.
|
|
|
|
import 'package:rive/src/rive_core/component.dart';
|
|
|
|
abstract class ContainerComponentBase extends Component {
|
|
static const int typeKey = 11;
|
|
@override
|
|
int get coreType => ContainerComponentBase.typeKey;
|
|
@override
|
|
Set<int> get coreTypes =>
|
|
{ContainerComponentBase.typeKey, ComponentBase.typeKey};
|
|
}
|