您最多选择25个主题 主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

1049 行
41 KiB

using System;
using Unity.UIWidgets.animation;
using Unity.UIWidgets.foundation;
using Unity.UIWidgets.painting;
using Unity.UIWidgets.rendering;
using Unity.UIWidgets.ui;
using UnityEngine;
using Color = Unity.UIWidgets.ui.Color;
using Rect = Unity.UIWidgets.ui.Rect;
using TextStyle = Unity.UIWidgets.painting.TextStyle;
namespace Unity.UIWidgets.widgets {
public class BoxConstraintsTween : Tween<BoxConstraints> {
public BoxConstraintsTween(
BoxConstraints begin = null,
BoxConstraints end = null
) : base(begin: begin, end: end) {
}
public override BoxConstraints lerp(float t) {
return BoxConstraints.lerp(begin, end, t);
}
}
public class DecorationTween : Tween<Decoration> {
public DecorationTween(
Decoration begin = null,
Decoration end = null) : base(begin: begin, end: end) {
}
public override Decoration lerp(float t) {
return Decoration.lerp(begin, end, t);
}
}
public class EdgeInsetsTween : Tween<EdgeInsets> {
public EdgeInsetsTween(
EdgeInsets begin = null,
EdgeInsets end = null) : base(begin: begin, end: end) {
}
public override EdgeInsets lerp(float t) {
return EdgeInsets.lerp(begin, end, t);
}
}
public class EdgeInsetsGeometryTween : Tween<EdgeInsetsGeometry> {
public EdgeInsetsGeometryTween(
EdgeInsetsGeometry begin = null,
EdgeInsetsGeometry end = null) : base(begin: begin, end: end) {
}
public override EdgeInsetsGeometry lerp(float t) {
return EdgeInsetsGeometry.lerp(begin, end, t);
}
}
public class BorderRadiusTween : Tween<BorderRadius> {
public BorderRadiusTween(
BorderRadius begin = null,
BorderRadius end = null) : base(begin: begin, end: end) {
}
public override BorderRadius lerp(float t) {
return BorderRadius.lerp(begin, end, t);
}
}
public class BorderTween : Tween<Border> {
public BorderTween(
Border begin = null,
Border end = null) : base(begin: begin, end: end) {
}
public override Border lerp(float t) {
return Border.lerp(begin, end, t);
}
}
public class Matrix4Tween : Tween<Matrix4> {
public Matrix4Tween(
Matrix4 begin = null,
Matrix4 end = null) : base(begin: begin, end: end) {
}
public override Matrix4 lerp(float t) {
D.assert(begin != null);
D.assert(end != null);
Vector3 beginTranslation = Vector3.zero;
Vector3 endTranslation = Vector3.zero;
Quaternion beginRotation = Quaternion.identity;
Quaternion endRotation = Quaternion.identity;
Vector3 beginScale = Vector3.zero;
Vector3 endScale = Vector3.zero;
begin.decompose(ref beginTranslation, ref beginRotation, ref beginScale);
end.decompose(ref endTranslation, ref endRotation, ref endScale);
Vector3 lerpTranslation =
beginTranslation * (1.0f - t) + endTranslation * t;
// TODO(alangardner): Implement slerp for constant rotation
Quaternion lerpRotation =
beginRotation
.scaled(1.0f - t)
.add(endRotation.scaled(t)).normalized;
Vector3 lerpScale = beginScale * (1.0f - t) + endScale * t;
return Matrix4.compose(lerpTranslation, lerpRotation, lerpScale);
}
}
public class TextStyleTween : Tween<TextStyle> {
public TextStyleTween(
TextStyle begin = null,
TextStyle end = null) : base(begin: begin, end: end) {
}
public override TextStyle lerp(float t) {
return TextStyle.lerp(begin, end, t);
}
}
public abstract class ImplicitlyAnimatedWidget : StatefulWidget {
public ImplicitlyAnimatedWidget(
Key key = null,
Curve curve = null,
TimeSpan? duration = null,
VoidCallback onEnd = null
) : base(key: key) {
D.assert(duration != null);
this.curve = curve ?? Curves.linear;
this.duration = duration ?? TimeSpan.Zero;
this.onEnd = onEnd;
}
public readonly Curve curve;
public readonly TimeSpan duration;
public readonly VoidCallback onEnd;
public override void debugFillProperties(DiagnosticPropertiesBuilder properties) {
base.debugFillProperties(properties);
properties.add(new IntProperty("duration", (int) duration.TotalMilliseconds, unit: "ms"));
}
}
public delegate Tween<T> TweenConstructor<T>(T targetValue);
public interface TweenVisitor {
Tween<T> visit<T, T2>(ImplicitlyAnimatedWidgetState<T2> state, Tween<T> tween, T targetValue,
TweenConstructor<T> constructor) where T2 : ImplicitlyAnimatedWidget;
}
public class TweenVisitorUpdateTween : TweenVisitor {
public Tween<T> visit<T, T2>(ImplicitlyAnimatedWidgetState<T2> state, Tween<T> tween, T targetValue,
TweenConstructor<T> constructor)
where T2 : ImplicitlyAnimatedWidget {
state._updateTween(tween, targetValue);
return tween;
}
}
public class TweenVisitorCheckStartAnimation : TweenVisitor {
public bool shouldStartAnimation;
public TweenVisitorCheckStartAnimation() {
shouldStartAnimation = false;
}
public Tween<T> visit<T, T2>(ImplicitlyAnimatedWidgetState<T2> state, Tween<T> tween, T targetValue,
TweenConstructor<T> constructor)
where T2 : ImplicitlyAnimatedWidget {
if (targetValue != null) {
tween = tween ?? constructor(targetValue);
if (state._shouldAnimateTween(tween, targetValue)) {
shouldStartAnimation = true;
}
}
else {
tween = null;
}
return tween;
}
}
public abstract class ImplicitlyAnimatedWidgetState<T> : SingleTickerProviderStateMixin<T>
where T : ImplicitlyAnimatedWidget {
protected AnimationController controller {
get { return _controller; }
}
AnimationController _controller;
public Animation<float> animation {
get { return _animation; }
}
Animation<float> _animation;
public override void initState() {
base.initState();
_controller = new AnimationController(
duration: widget.duration,
debugLabel: foundation_.kDebugMode ? widget.toStringShort() : null,
vsync: this
);
_controller.addStatusListener((AnimationStatus status) => {
switch (status) {
case AnimationStatus.completed:
if (widget.onEnd != null)
widget.onEnd();
break;
case AnimationStatus.dismissed:
case AnimationStatus.forward:
case AnimationStatus.reverse:
break;
}
});
_updateCurve();
_constructTweens();
didUpdateTweens();
}
public override void didUpdateWidget(StatefulWidget oldWidget) {
base.didUpdateWidget(oldWidget);
if (widget.curve != ((ImplicitlyAnimatedWidget) oldWidget).curve) {
_updateCurve();
}
_controller.duration = widget.duration;
if (_constructTweens()) {
var visitor = new TweenVisitorUpdateTween();
forEachTween(visitor);
_controller.setValue(0.0f);
_controller.forward();
didUpdateTweens();
}
}
void _updateCurve() {
if (widget.curve != null) {
_animation = new CurvedAnimation(parent: _controller, curve: widget.curve);
}
else {
_animation = _controller;
}
}
public override void dispose() {
_controller.dispose();
base.dispose();
}
public bool _shouldAnimateTween<T2>(Tween<T2> tween, T2 targetValue) {
return !targetValue.Equals(tween.end == null ? tween.begin : tween.end);
}
public void _updateTween<T2>(Tween<T2> tween, T2 targetValue) {
if (tween == null) {
return;
}
tween.begin = tween.evaluate(_animation);
tween.end = targetValue;
}
bool _constructTweens() {
var visitor = new TweenVisitorCheckStartAnimation();
forEachTween(visitor);
return visitor.shouldStartAnimation;
}
protected abstract void forEachTween(TweenVisitor visitor);
protected virtual void didUpdateTweens() {
}
}
public abstract class AnimatedWidgetBaseState<T> : ImplicitlyAnimatedWidgetState<T>
where T : ImplicitlyAnimatedWidget {
public override void initState() {
base.initState();
controller.addListener(_handleAnimationChanged);
}
void _handleAnimationChanged() {
setState(() => { });
}
}
public class AnimatedContainer : ImplicitlyAnimatedWidget {
public AnimatedContainer(
Key key = null,
AlignmentGeometry alignment = null,
EdgeInsetsGeometry padding = null,
Color color = null,
Decoration decoration = null,
Decoration foregroundDecoration = null,
float? width = null,
float? height = null,
BoxConstraints constraints = null,
EdgeInsetsGeometry margin = null,
Matrix4 transform = null,
Widget child = null,
Curve curve = null,
TimeSpan? duration = null,
VoidCallback onEnd = null
) : base(key: key, curve: curve ?? Curves.linear, duration: duration, onEnd: onEnd) {
D.assert(duration != null);
D.assert(margin == null || margin.isNonNegative);
D.assert(padding == null || padding.isNonNegative);
D.assert(decoration == null || decoration.debugAssertIsValid());
D.assert(constraints == null || constraints.debugAssertIsValid());
D.assert(color == null || decoration == null,
() => "Cannot provide both a color and a decoration\n" +
"The color argument is just a shorthand for \"decoration: new BoxDecoration(backgroundColor: color)\".");
this.alignment = alignment;
this.padding = padding;
this.foregroundDecoration = foregroundDecoration;
this.margin = margin;
this.transform = transform;
this.child = child;
this.decoration = decoration ?? (color != null ? new BoxDecoration(color: color) : null);
this.constraints =
(width != null || height != null)
? constraints?.tighten(width: width, height: height)
?? BoxConstraints.tightFor(width: width, height: height)
: constraints;
}
public readonly Widget child;
public readonly AlignmentGeometry alignment;
public readonly EdgeInsetsGeometry padding;
public readonly Decoration decoration;
public readonly Decoration foregroundDecoration;
public readonly BoxConstraints constraints;
public readonly EdgeInsetsGeometry margin;
public readonly Matrix4 transform;
public override State createState() {
return new _AnimatedContainerState();
}
public override void debugFillProperties(DiagnosticPropertiesBuilder properties) {
base.debugFillProperties(properties);
properties.add(new DiagnosticsProperty<AlignmentGeometry>("alignment", alignment, showName: false,
defaultValue: null));
properties.add(new DiagnosticsProperty<EdgeInsetsGeometry>("padding", padding, defaultValue: null));
properties.add(new DiagnosticsProperty<Decoration>("bg", decoration, defaultValue: null));
properties.add(
new DiagnosticsProperty<Decoration>("fg", foregroundDecoration, defaultValue: null));
properties.add(new DiagnosticsProperty<BoxConstraints>("constraints", constraints,
defaultValue: null,
showName: false));
properties.add(new DiagnosticsProperty<EdgeInsetsGeometry>("margin", margin, defaultValue: null));
properties.add(ObjectFlagProperty<Matrix4>.has("transform", transform));
}
}
class _AnimatedContainerState : AnimatedWidgetBaseState<AnimatedContainer> {
AlignmentGeometryTween _alignment;
EdgeInsetsGeometryTween _padding;
DecorationTween _decoration;
DecorationTween _foregroundDecoration;
BoxConstraintsTween _constraints;
EdgeInsetsGeometryTween _margin;
Matrix4Tween _transform;
protected override void forEachTween(TweenVisitor visitor) {
_alignment = (AlignmentGeometryTween) visitor.visit(this, _alignment, widget.alignment,
(AlignmentGeometry value) => new AlignmentGeometryTween(begin: value));
_padding = (EdgeInsetsGeometryTween) visitor.visit(this, _padding, widget.padding,
( value) => new EdgeInsetsGeometryTween(begin: value));
_decoration = (DecorationTween) visitor.visit(this, _decoration, widget.decoration,
(Decoration value) => new DecorationTween(begin: value));
_foregroundDecoration = (DecorationTween) visitor.visit(this, _foregroundDecoration,
widget.foregroundDecoration, (Decoration value) => new DecorationTween(begin: value));
_constraints = (BoxConstraintsTween) visitor.visit(this, _constraints, widget.constraints,
(BoxConstraints value) => new BoxConstraintsTween(begin: value));
_margin = (EdgeInsetsGeometryTween) visitor.visit(this, _margin, widget.margin,
(value) => new EdgeInsetsGeometryTween(begin: value));
_transform = (Matrix4Tween) visitor.visit(this, _transform, widget.transform,
(Matrix4 value) => new Matrix4Tween(begin: value));
}
public override Widget build(BuildContext context) {
return new Container(
child: widget.child,
alignment: _alignment?.evaluate(animation),
padding: _padding?.evaluate(animation),
decoration: _decoration?.evaluate(animation),
foregroundDecoration: _foregroundDecoration?.evaluate(animation),
constraints: _constraints?.evaluate(animation),
margin: _margin?.evaluate(animation),
transform: _transform?.evaluate(animation)
);
}
public override void debugFillProperties(DiagnosticPropertiesBuilder description) {
base.debugFillProperties(description);
description.add(new DiagnosticsProperty<AlignmentGeometryTween>("alignment", _alignment, showName: false,
defaultValue: null));
description.add(new DiagnosticsProperty<EdgeInsetsGeometryTween>("padding", _padding, defaultValue: null));
description.add(new DiagnosticsProperty<DecorationTween>("bg", _decoration, defaultValue: null));
description.add(
new DiagnosticsProperty<DecorationTween>("fg", _foregroundDecoration, defaultValue: null));
description.add(new DiagnosticsProperty<BoxConstraintsTween>("constraints", _constraints,
showName: false, defaultValue: null));
description.add(new DiagnosticsProperty<EdgeInsetsGeometryTween>("margin", _margin, defaultValue: null));
description.add(ObjectFlagProperty<Matrix4Tween>.has("transform", _transform));
}
}
public class AnimatedPadding : ImplicitlyAnimatedWidget {
public AnimatedPadding(
Key key = null,
EdgeInsetsGeometry padding = null,
Widget child = null,
Curve curve = null,
TimeSpan? duration = null,
VoidCallback onEnd = null
) : base(key: key, curve: curve, duration: duration, onEnd: onEnd) {
D.assert(padding != null);
D.assert(padding.isNonNegative);
this.padding = padding;
this.child = child;
}
public readonly EdgeInsetsGeometry padding;
public readonly Widget child;
public override State createState() {
return new _AnimatedPaddingState();
}
public override void debugFillProperties(DiagnosticPropertiesBuilder properties) {
base.debugFillProperties(properties);
properties.add(new DiagnosticsProperty<EdgeInsetsGeometry>("padding", padding));
}
}
class _AnimatedPaddingState : AnimatedWidgetBaseState<AnimatedPadding> {
EdgeInsetsGeometryTween _padding;
protected override void forEachTween(TweenVisitor visitor) {
_padding = (EdgeInsetsGeometryTween) visitor.visit(this, _padding, widget.padding,
(EdgeInsetsGeometry value) => new EdgeInsetsGeometryTween(begin: value));
}
public override Widget build(BuildContext context) {
return new Padding(
padding: _padding
.evaluate(animation)
.clamp(EdgeInsets.zero, EdgeInsetsGeometry.infinity),
child: widget.child
);
}
public override void debugFillProperties(DiagnosticPropertiesBuilder description) {
base.debugFillProperties(description);
description.add(new DiagnosticsProperty<EdgeInsetsGeometryTween>("padding", _padding,
defaultValue: foundation_.kNullDefaultValue));
}
}
public class AnimatedAlign : ImplicitlyAnimatedWidget {
public AnimatedAlign(
Key key = null,
AlignmentGeometry alignment = null,
Widget child = null,
Curve curve = null,
TimeSpan? duration = null,
VoidCallback onEnd = null
) : base(key: key, curve: curve ?? Curves.linear, duration: duration, onEnd: onEnd) {
D.assert(alignment != null);
this.alignment = alignment;
this.child = child;
}
public readonly AlignmentGeometry alignment;
public readonly Widget child;
public override State createState() {
return new _AnimatedAlignState();
}
public override void debugFillProperties(DiagnosticPropertiesBuilder properties) {
base.debugFillProperties(properties: properties);
properties.add(new DiagnosticsProperty<AlignmentGeometry>("alignment", value: alignment));
}
}
class _AnimatedAlignState : AnimatedWidgetBaseState<AnimatedAlign> {
AlignmentGeometryTween _alignment;
protected override void forEachTween(TweenVisitor visitor) {
_alignment = (AlignmentGeometryTween) visitor.visit(this, tween: _alignment,
targetValue: widget.alignment, constructor: value => new AlignmentGeometryTween(begin: value));
}
public override Widget build(BuildContext context) {
return new Align(
alignment: _alignment.evaluate(animation: animation),
child: widget.child
);
}
public override void debugFillProperties(DiagnosticPropertiesBuilder description) {
base.debugFillProperties(properties: description);
description.add(new DiagnosticsProperty<AlignmentGeometryTween>("alignment", value: _alignment, defaultValue: null));
}
}
public class AnimatedPositioned : ImplicitlyAnimatedWidget {
public AnimatedPositioned(
Key key = null,
Widget child = null,
float? left = null,
float? top = null,
float? right = null,
float? bottom = null,
float? width = null,
float? height = null,
Curve curve = null,
TimeSpan? duration = null,
VoidCallback onEnd = null
) : base(key: key, curve: curve ?? Curves.linear, duration: duration, onEnd: onEnd) {
D.assert(left == null || right == null || width == null);
D.assert(top == null || bottom == null || height == null);
this.child = child;
this.left = left;
this.top = top;
this.right = right;
this.bottom = bottom;
this.width = width;
this.height = height;
}
public static AnimatedPositioned fromRect(
Key key = null,
Widget child = null,
Rect rect = null,
Curve curve = null,
TimeSpan? duration = null,
VoidCallback onEnd = null
) {
return new AnimatedPositioned(
child: child,
duration: duration,
left: rect.left,
top: rect.top,
right: null,
bottom: null,
width: rect.width,
height: rect.height,
curve: curve ?? Curves.linear,
key: key,
onEnd: onEnd
);
}
public readonly Widget child;
public readonly float? left;
public readonly float? top;
public readonly float? right;
public readonly float? bottom;
public readonly float? width;
public readonly float? height;
public override State createState() {
return new _AnimatedPositionedState();
}
public override void debugFillProperties(DiagnosticPropertiesBuilder properties) {
base.debugFillProperties(properties: properties);
properties.add(new FloatProperty("left", value: left, defaultValue: null));
properties.add(new FloatProperty("top", value: top, defaultValue: null));
properties.add(new FloatProperty("right", value: right, defaultValue: null));
properties.add(new FloatProperty("bottom", value: bottom, defaultValue: null));
properties.add(new FloatProperty("width", value: width, defaultValue: null));
properties.add(new FloatProperty("height", value: height, defaultValue: null));
}
}
class _AnimatedPositionedState : AnimatedWidgetBaseState<AnimatedPositioned> {
Tween<float?> _left;
Tween<float?> _top;
Tween<float?> _right;
Tween<float?> _bottom;
Tween<float?> _width;
Tween<float?> _height;
protected override void forEachTween(TweenVisitor visitor) {
_left = visitor.visit(this, tween: _left, targetValue: widget.left,
constructor: value => new NullableFloatTween(begin: value));
_top = visitor.visit(this, tween: _top, targetValue: widget.top,
constructor: value => new NullableFloatTween(begin: value));
_right = visitor.visit(this, tween: _right, targetValue: widget.right,
constructor: value => new NullableFloatTween(begin: value));
_bottom = visitor.visit(this, tween: _bottom, targetValue: widget.bottom,
constructor: value => new NullableFloatTween(begin: value));
_width = visitor.visit(this, tween: _width, targetValue: widget.width,
constructor: value => new NullableFloatTween(begin: value));
_height = visitor.visit(this, tween: _height, targetValue: widget.height,
constructor: value => new NullableFloatTween(begin: value));
}
public override Widget build(BuildContext context) {
return new Positioned(
child: widget.child,
left: _left?.evaluate(animation: animation),
top: _top?.evaluate(animation: animation),
right: _right?.evaluate(animation: animation),
bottom: _bottom?.evaluate(animation: animation),
width: _width?.evaluate(animation: animation),
height: _height?.evaluate(animation: animation)
);
}
public override void debugFillProperties(DiagnosticPropertiesBuilder description) {
base.debugFillProperties(properties: description);
description.add(ObjectFlagProperty<Tween<float?>>.has("left", value: _left));
description.add(ObjectFlagProperty<Tween<float?>>.has("top", value: _top));
description.add(ObjectFlagProperty<Tween<float?>>.has("right", value: _right));
description.add(ObjectFlagProperty<Tween<float?>>.has("bottom", value: _bottom));
description.add(ObjectFlagProperty<Tween<float?>>.has("width", value: _width));
description.add(ObjectFlagProperty<Tween<float?>>.has("height", value: _height));
}
}
public class AnimatedPositionedDirectional : ImplicitlyAnimatedWidget {
public AnimatedPositionedDirectional(
Key key = null,
Widget child = null,
float? start = null,
float? top = null,
float? end = null,
float? bottom = null,
float? width = null,
float? height = null,
Curve curve = null,
TimeSpan? duration = null,
VoidCallback onEnd = null
) : base(key: key, curve: curve ?? Curves.linear, duration: duration, onEnd: onEnd) {
D.assert(start == null || end == null || width == null);
D.assert(top == null || bottom == null || height == null);
this.child = child;
this.start = start;
this.top = top;
this.end = end;
this.bottom = bottom;
this.width = width;
this.height = height;
}
public readonly Widget child;
public readonly float? start;
public readonly float? top;
public readonly float? end;
public readonly float? bottom;
public readonly float? width;
public readonly float? height;
public override State createState() {
return new _AnimatedPositionedDirectionalState();
}
public override void debugFillProperties(DiagnosticPropertiesBuilder properties) {
base.debugFillProperties(properties: properties);
properties.add(new FloatProperty("start", value: start, defaultValue: null));
properties.add(new FloatProperty("top", value: top, defaultValue: null));
properties.add(new FloatProperty("end", value: end, defaultValue: null));
properties.add(new FloatProperty("bottom", value: bottom, defaultValue: null));
properties.add(new FloatProperty("width", value: width, defaultValue: null));
properties.add(new FloatProperty("height", value: height, defaultValue: null));
}
}
class _AnimatedPositionedDirectionalState : AnimatedWidgetBaseState<AnimatedPositionedDirectional> {
Tween<float?> _start;
Tween<float?> _top;
Tween<float?> _end;
Tween<float?> _bottom;
Tween<float?> _width;
Tween<float?> _height;
protected override void forEachTween(TweenVisitor visitor) {
_start = visitor.visit(this, tween: _start, targetValue: widget.start,
constructor: value => new NullableFloatTween(begin: value));
_top = visitor.visit(this, tween: _top, targetValue: widget.top,
constructor: value => new NullableFloatTween(begin: value));
_end = visitor.visit(this, tween: _end, targetValue: widget.end,
constructor: value => new NullableFloatTween(begin: value));
_bottom = visitor.visit(this, tween: _bottom, targetValue: widget.bottom,
constructor: value => new NullableFloatTween(begin: value));
_width = visitor.visit(this, tween: _width, targetValue: widget.width,
constructor: value => new NullableFloatTween(begin: value));
_height = visitor.visit(this, tween: _height, targetValue: widget.height,
constructor: value => new NullableFloatTween(begin: value));
}
public override Widget build(BuildContext context) {
D.assert(WidgetsD.debugCheckHasDirectionality(context));
return Positioned.directional(
textDirection: Directionality.of(context: context),
child: widget.child,
start: _start?.evaluate(animation: animation),
top: _top?.evaluate(animation: animation),
end: _end?.evaluate(animation: animation),
bottom: _bottom?.evaluate(animation: animation),
width: _width?.evaluate(animation: animation),
height: _height?.evaluate(animation: animation)
);
}
public override void debugFillProperties(DiagnosticPropertiesBuilder description) {
base.debugFillProperties(properties: description);
description.add(ObjectFlagProperty<Tween<float?>>.has("start", value: _start));
description.add(ObjectFlagProperty<Tween<float?>>.has("top", value: _top));
description.add(ObjectFlagProperty<Tween<float?>>.has("end", value: _end));
description.add(ObjectFlagProperty<Tween<float?>>.has("bottom", value: _bottom));
description.add(ObjectFlagProperty<Tween<float?>>.has("width", value: _width));
description.add(ObjectFlagProperty<Tween<float?>>.has("height", value: _height));
}
}
public class AnimatedOpacity : ImplicitlyAnimatedWidget {
public AnimatedOpacity(
Key key = null,
Widget child = null,
float? opacity = null,
Curve curve = null,
TimeSpan? duration = null,
VoidCallback onEnd = null
) :
base(key: key, curve: curve ?? Curves.linear, duration: duration, onEnd: onEnd) {
D.assert(opacity != null && opacity >= 0.0 && opacity <= 1.0);
this.child = child;
this.opacity = opacity;
}
public readonly Widget child;
public readonly float? opacity;
public override State createState() {
return new _AnimatedOpacityState();
}
public override void debugFillProperties(DiagnosticPropertiesBuilder properties) {
base.debugFillProperties(properties);
properties.add(new FloatProperty("opacity", opacity));
}
}
class _AnimatedOpacityState : ImplicitlyAnimatedWidgetState<AnimatedOpacity> {
NullableFloatTween _opacity;
Animation<float> _opacityAnimation;
protected override void forEachTween(TweenVisitor visitor) {
_opacity = (NullableFloatTween) visitor.visit(this, _opacity, widget.opacity,
(float? value) => new NullableFloatTween(begin: value));
}
protected override void didUpdateTweens() {
float? endValue = _opacity.end ?? _opacity.begin ?? null;
D.assert(endValue != null);
_opacityAnimation = animation.drive(new FloatTween(begin: _opacity.begin.Value, end: endValue.Value));
}
public override Widget build(BuildContext context) {
return new FadeTransition(
opacity: _opacityAnimation,
child: widget.child
);
}
}
public class SliverAnimatedOpacity : ImplicitlyAnimatedWidget {
protected SliverAnimatedOpacity(
Key key = null,
Widget sliver = null,
float? opacity = null,
Curve curve = null,
TimeSpan duration = default,
VoidCallback onEnd = null
) : base(key: key, curve: curve ?? Curves.linear, duration: duration, onEnd: onEnd) {
D.assert(opacity != null && opacity >= 0.0 && opacity <= 1.0);
this.opacity = opacity;
this.sliver = sliver;
}
public readonly Widget sliver;
public readonly float? opacity;
public override State createState() {
return new _SliverAnimatedOpacityState();
}
public override void debugFillProperties(DiagnosticPropertiesBuilder properties) {
base.debugFillProperties(properties);
properties.add(new FloatProperty("opacity", opacity));
}
}
class _SliverAnimatedOpacityState : ImplicitlyAnimatedWidgetState<SliverAnimatedOpacity> {
FloatTween _opacity;
Animation<float> _opacityAnimation;
protected override void forEachTween(TweenVisitor visitor) {
_opacity = (FloatTween) visitor.visit(this, _opacity, widget.opacity ?? 0.0f, (float value) => new FloatTween(begin: value, 0));
}
protected override void didUpdateTweens() {
_opacityAnimation = animation.drive(_opacity);
}
public override Widget build(BuildContext context) {
return new SliverFadeTransition(
opacity: _opacityAnimation,
sliver: widget.sliver
);
}
}
public class AnimatedDefaultTextStyle : ImplicitlyAnimatedWidget {
public AnimatedDefaultTextStyle(
Key key = null,
Widget child = null,
TextStyle style = null,
TextAlign? textAlign = null,
bool softWrap = true,
TextOverflow? overflow = null,
int? maxLines = null,
TextWidthBasis textWidthBasis = TextWidthBasis.parent,
ui.TextHeightBehavior textHeightBehavior = null,
Curve curve = null,
TimeSpan? duration = null,
VoidCallback onEnd = null
) : base(key: key, curve: curve ?? Curves.linear, duration: duration, onEnd: onEnd) {
overflow = overflow ?? TextOverflow.clip;
D.assert(duration != null);
D.assert(style != null);
D.assert(child != null);
D.assert(overflow != null);
D.assert(maxLines == null || maxLines > 0);
this.child = child;
this.style = style;
this.textAlign = textAlign;
this.softWrap = softWrap;
this.overflow = overflow.Value;
this.maxLines = maxLines;
this.textHeightBehavior = textHeightBehavior;
this.textWidthBasis = textWidthBasis;
}
public readonly Widget child;
public readonly TextStyle style;
public readonly bool softWrap;
public readonly TextAlign? textAlign;
public readonly ui.TextHeightBehavior textHeightBehavior;
public readonly TextWidthBasis textWidthBasis;
public readonly TextOverflow overflow;
public readonly int? maxLines;
public readonly VoidCallback onEnd;
public override State createState() {
return new _AnimatedDefaultTextStyleState();
}
public override void debugFillProperties(DiagnosticPropertiesBuilder properties) {
base.debugFillProperties(properties);
style?.debugFillProperties(properties);
properties.add(new EnumProperty<TextAlign>("textAlign", textAlign ?? TextAlign.start, defaultValue: null));
properties.add(new FlagProperty("softWrap", value: softWrap, ifTrue: "wrapping at box width", ifFalse: "no wrapping except at line break characters", showName: true));
properties.add(new EnumProperty<TextOverflow>("overflow", overflow, defaultValue: null));
properties.add(new IntProperty("maxLines", maxLines, defaultValue: null));
properties.add(new EnumProperty<TextWidthBasis>("textWidthBasis", textWidthBasis, defaultValue: TextWidthBasis.parent));
properties.add(new DiagnosticsProperty<ui.TextHeightBehavior>("textHeightBehavior", textHeightBehavior, defaultValue: null));
}
}
class _AnimatedDefaultTextStyleState : AnimatedWidgetBaseState<AnimatedDefaultTextStyle> {
TextStyleTween _style;
protected override void forEachTween(TweenVisitor visitor) {
_style = (TextStyleTween) visitor.visit(this, _style, widget.style,
(TextStyle value) => new TextStyleTween(begin: value));
}
public override Widget build(BuildContext context) {
return new DefaultTextStyle(
style: _style.evaluate(animation),
textAlign: widget.textAlign,
softWrap: widget.softWrap,
overflow: widget.overflow,
maxLines: widget.maxLines,
textWidthBasis: widget.textWidthBasis,
textHeightBehavior: widget.textHeightBehavior,
child: widget.child
);
}
}
public class AnimatedPhysicalModel : ImplicitlyAnimatedWidget {
public AnimatedPhysicalModel(
Key key = null,
Widget child = null,
BoxShape? shape = null,
Clip clipBehavior = Clip.none,
BorderRadius borderRadius = null,
float? elevation = null,
Color color = null,
bool animateColor = true,
Color shadowColor = null,
bool animateShadowColor = true,
Curve curve = null,
TimeSpan? duration = null,
VoidCallback onEnd = null
) : base(key: key, curve: curve ?? Curves.linear, duration: duration,onEnd: onEnd) {
D.assert(child != null);
D.assert(shape != null);
D.assert(elevation != null && elevation >= 0.0f);
D.assert(color != null);
D.assert(shadowColor != null);
this.child = child;
this.shape = shape ?? BoxShape.circle;
this.clipBehavior = clipBehavior;
this.borderRadius = borderRadius ?? BorderRadius.zero;
this.elevation = elevation ?? 0.0f;
this.color = color;
this.animateColor = animateColor;
this.shadowColor = shadowColor;
this.animateShadowColor = animateShadowColor;
}
public readonly Widget child;
public readonly BoxShape shape;
public readonly Clip clipBehavior;
public readonly BorderRadius borderRadius;
public readonly float elevation;
public readonly Color color;
public readonly bool animateColor;
public readonly Color shadowColor;
public readonly bool animateShadowColor;
public override State createState() {
return new _AnimatedPhysicalModelState();
}
public override void debugFillProperties(DiagnosticPropertiesBuilder properties) {
base.debugFillProperties(properties);
properties.add(new EnumProperty<BoxShape>("shape", shape));
properties.add(new DiagnosticsProperty<BorderRadius>("borderRadius", borderRadius));
properties.add(new FloatProperty("elevation", elevation));
properties.add(new DiagnosticsProperty<Color>("color", color));
properties.add(new DiagnosticsProperty<bool>("animateColor", animateColor));
properties.add(new DiagnosticsProperty<Color>("shadowColor", shadowColor));
properties.add(new DiagnosticsProperty<bool>("animateShadowColor", animateShadowColor));
}
}
class _AnimatedPhysicalModelState : AnimatedWidgetBaseState<AnimatedPhysicalModel> {
BorderRadiusTween _borderRadius;
FloatTween _elevation;
ColorTween _color;
ColorTween _shadowColor;
protected override void forEachTween(TweenVisitor visitor) {
_borderRadius = (BorderRadiusTween) visitor.visit(this, _borderRadius, widget.borderRadius,
(BorderRadius value) => new BorderRadiusTween(begin: value));
_elevation = (FloatTween) visitor.visit(this, _elevation, widget.elevation,
(float value) => new FloatTween(begin: value, end: value));
_color = (ColorTween) visitor.visit(this, _color, widget.color,
(Color value) => new ColorTween(begin: value));
_shadowColor = (ColorTween) visitor.visit(this, _shadowColor, widget.shadowColor,
(Color value) => new ColorTween(begin: value));
}
public override Widget build(BuildContext context) {
return new PhysicalModel(
child: widget.child,
shape: widget.shape,
clipBehavior: widget.clipBehavior,
borderRadius: _borderRadius.evaluate(animation),
elevation: _elevation.evaluate(animation),
color: widget.animateColor ? _color.evaluate(animation) : widget.color,
shadowColor: widget.animateShadowColor
? _shadowColor.evaluate(animation)
: widget.shadowColor);
}
}
}