您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
58 行
2.0 KiB
58 行
2.0 KiB
using Unity.UIWidgets.foundation;
|
|
using Unity.UIWidgets.painting;
|
|
|
|
namespace Unity.UIWidgets.widgets {
|
|
public class ScrollBehavior {
|
|
public virtual Widget buildViewportChrome(BuildContext context, Widget child, AxisDirection axisDirection) {
|
|
return child;
|
|
}
|
|
|
|
public virtual ScrollPhysics getScrollPhysics(BuildContext context) {
|
|
return new BouncingScrollPhysics();
|
|
}
|
|
|
|
public virtual bool shouldNotify(ScrollBehavior oldDelegate) {
|
|
return false;
|
|
}
|
|
|
|
public override string ToString() {
|
|
return GetType().ToString();
|
|
}
|
|
}
|
|
|
|
public class ScrollConfiguration : InheritedWidget {
|
|
public ScrollConfiguration(
|
|
Key key = null,
|
|
ScrollBehavior behavior = null,
|
|
Widget child = null
|
|
) : base(key: key, child: child) {
|
|
D.assert(behavior != null);
|
|
this.behavior = behavior;
|
|
}
|
|
|
|
public readonly ScrollBehavior behavior;
|
|
|
|
public static ScrollBehavior of(BuildContext context) {
|
|
ScrollConfiguration configuration =
|
|
(ScrollConfiguration) context.inheritFromWidgetOfExactType(typeof(ScrollConfiguration));
|
|
if (configuration != null) {
|
|
return configuration.behavior;
|
|
}
|
|
|
|
return new ScrollBehavior();
|
|
}
|
|
|
|
public override bool updateShouldNotify(InheritedWidget oldWidgetRaw) {
|
|
var oldWidget = (ScrollConfiguration) oldWidgetRaw;
|
|
|
|
D.assert(behavior != null);
|
|
return behavior.GetType() != oldWidget.behavior.GetType()
|
|
|| behavior != oldWidget.behavior && behavior.shouldNotify(oldWidget.behavior);
|
|
}
|
|
|
|
public override void debugFillProperties(DiagnosticPropertiesBuilder properties) {
|
|
base.debugFillProperties(properties);
|
|
properties.add(new DiagnosticsProperty<ScrollBehavior>("behavior", behavior));
|
|
}
|
|
}
|
|
}
|