Skip to content

Commit

Permalink
feat!: support making RenderObjectWidgets animatable (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
blaugold committed May 21, 2023
1 parent 5e4d611 commit adf9fb0
Show file tree
Hide file tree
Showing 7 changed files with 807 additions and 529 deletions.
22 changes: 14 additions & 8 deletions packages/fleet/lib/fleet.dart
Expand Up @@ -11,7 +11,17 @@ export 'src/animatable_flutter_widgets.dart'
ASliverOpacity,
ASliverPadding,
ATransform;
export 'src/animatable_widget.dart'
export 'src/animatable_render_object_widget.dart'
show
AnimatableRenderObjectWidget,
AnimatableSingleChildRenderObjectWidgetMixin;
export 'src/animatable_widget_state.dart'
show AnimatableState, AnimatableStateMixin;
export 'src/animate.dart' show Animated, withAnimation, AnimatingStateMixin;
export 'src/animation.dart' show AnimationSpec, AnimationFromCurveExtension;
export 'src/common.dart' show Block;
export 'src/duration.dart' show DurationFromIntExtension;
export 'src/parameter.dart'
show
AnimatableAlignmentGeometry,
AnimatableBoxConstraints,
Expand All @@ -25,8 +35,6 @@ export 'src/animatable_widget.dart'
AnimatableParameter,
AnimatableRect,
AnimatableSize,
AnimatableState,
AnimatableStateMixin,
OptionalAnimatableAlignmentGeometry,
OptionalAnimatableBoxConstraints,
OptionalAnimatableColor,
Expand All @@ -37,9 +45,7 @@ export 'src/animatable_widget.dart'
OptionalAnimatableMatrix4,
OptionalAnimatableObject,
OptionalAnimatableRect,
OptionalAnimatableSize;
export 'src/animate.dart' show Animated, withAnimation, AnimatingStateMixin;
export 'src/animation.dart' show AnimationSpec, AnimationFromCurveExtension;
export 'src/common.dart' show Block;
export 'src/duration.dart' show DurationFromIntExtension;
OptionalAnimatableSize,
AnimatableParameterHostMixin,
AnimatableParameterHost;
export 'src/widget_extension.dart' show FleetWidgetExtension;

0 comments on commit adf9fb0

Please sign in to comment.