您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
94 行
3.0 KiB
94 行
3.0 KiB
using System;
|
|
using Unity.UIWidgets.animation;
|
|
using Unity.UIWidgets.foundation;
|
|
using Unity.UIWidgets.painting;
|
|
using Unity.UIWidgets.service;
|
|
using Unity.UIWidgets.ui;
|
|
using Unity.UIWidgets.widgets;
|
|
using UnityEngine;
|
|
|
|
namespace Unity.UIWidgets.material {
|
|
public class ExpandIcon : StatefulWidget {
|
|
public ExpandIcon(
|
|
Key key = null,
|
|
bool isExpanded = false,
|
|
float size = 24.0f,
|
|
ValueChanged<bool> onPressed = null,
|
|
EdgeInsets padding = null) : base(key: key) {
|
|
this.isExpanded = isExpanded;
|
|
this.size = size;
|
|
this.onPressed = onPressed;
|
|
this.padding = padding ?? EdgeInsets.all(8.0f);
|
|
}
|
|
|
|
public readonly bool isExpanded;
|
|
|
|
public readonly float size;
|
|
|
|
public readonly ValueChanged<bool> onPressed;
|
|
|
|
public readonly EdgeInsets padding;
|
|
|
|
public override State createState() {
|
|
return new _ExpandIconState();
|
|
}
|
|
}
|
|
|
|
|
|
public class _ExpandIconState : SingleTickerProviderStateMixin<ExpandIcon> {
|
|
AnimationController _controller;
|
|
Animation<float> _iconTurns;
|
|
|
|
static readonly Animatable<float> _iconTurnTween =
|
|
new FloatTween(begin: 0.0f, end: 0.5f).chain(new CurveTween(curve: Curves.fastOutSlowIn));
|
|
|
|
public override void initState() {
|
|
base.initState();
|
|
this._controller = new AnimationController(duration: ThemeUtils.kThemeAnimationDuration, vsync: this);
|
|
this._iconTurns = this._controller.drive(_iconTurnTween);
|
|
if (this.widget.isExpanded) {
|
|
this._controller.setValue(Mathf.PI);
|
|
}
|
|
}
|
|
|
|
public override void dispose() {
|
|
this._controller.dispose();
|
|
base.dispose();
|
|
}
|
|
|
|
|
|
public override void didUpdateWidget(StatefulWidget oldWidget) {
|
|
base.didUpdateWidget(oldWidget);
|
|
ExpandIcon _oldWidget = (ExpandIcon) oldWidget;
|
|
if (this.widget.isExpanded != _oldWidget.isExpanded) {
|
|
if (this.widget.isExpanded) {
|
|
this._controller.forward();
|
|
}
|
|
else {
|
|
this._controller.reverse();
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
void _handlePressed() {
|
|
if (this.widget.onPressed != null) {
|
|
this.widget.onPressed(this.widget.isExpanded);
|
|
}
|
|
}
|
|
|
|
|
|
public override Widget build(BuildContext context) {
|
|
D.assert(MaterialD.debugCheckHasMaterial(context));
|
|
ThemeData theme = Theme.of(context);
|
|
return new IconButton(
|
|
padding: this.widget.padding,
|
|
color: theme.brightness == Brightness.dark ? Colors.white54 : Colors.black54,
|
|
onPressed: this.widget.onPressed == null ? (VoidCallback) null : this._handlePressed,
|
|
icon: new RotationTransition(
|
|
turns: this._iconTurns,
|
|
child: new Icon(Icons.expand_more))
|
|
);
|
|
}
|
|
}
|
|
}
|