您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
21 行
687 B
21 行
687 B
using Unity.UIWidgets.animation;
|
|
using Unity.UIWidgets.engine;
|
|
using Unity.UIWidgets.engine2;
|
|
using Unity.UIWidgets.widgets;
|
|
|
|
namespace UIWidgetsSample {
|
|
public class UIWidgetsSamplePanel: UIWidgetsPanel {
|
|
|
|
protected virtual PageRouteFactory pageRouteBuilder {
|
|
get {
|
|
return (RouteSettings settings, WidgetBuilder builder) =>
|
|
new PageRouteBuilder(
|
|
settings: settings,
|
|
pageBuilder: (BuildContext context, Animation<float> animation,
|
|
Animation<float> secondaryAnimation) => builder(context)
|
|
);
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|