浏览代码

Fix an issue.

/main
Yuncong Zhang 6 年前
当前提交
a760b713
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. 2
      Runtime/widgets/framework.cs
  2. 2
      Samples/UIWidgetsGallery/gallery/backdrop.cs

2
Runtime/widgets/framework.cs


}
public abstract class StatefulWidget : Widget {
protected StatefulWidget(Key key = null) : base(key: key) {
protected StatefulWidget(Key key) : base(key: key) {
}
public override Element createElement() {

2
Samples/UIWidgetsGallery/gallery/backdrop.cs


Widget frontLayer = null,
Widget backTitle = null,
Widget backLayer = null
) {
) : base(key: null) {
this.frontAction = frontAction;
this.frontTitle = frontTitle;
this.frontHeading = frontHeading;

正在加载...
取消
保存