浏览代码

fix icon_theme_data.cs

/siyaoH-1.17-PlatformMessage
guanghuispark 4 年前
当前提交
33bdd9a3
共有 1 个文件被更改,包括 5 次插入2 次删除
  1. 7
      com.unity.uiwidgets/Runtime/widgets/icon_theme_data.cs

7
com.unity.uiwidgets/Runtime/widgets/icon_theme_data.cs


using System;
using Unity.UIWidgets.foundation;
using Unity.UIWidgets.painting;
using Unity.UIWidgets.ui;
namespace Unity.UIWidgets.widgets {

size: other.size
);
}
IconThemeData resolve(BuildContext context) => this;
public bool isConcrete {
get { return color != null && opacity != null && size != null; }
}

public override void debugFillProperties(DiagnosticPropertiesBuilder properties) {
base.debugFillProperties(properties);
properties.add(new DiagnosticsProperty<Color>("color", color,
properties.add(new ColorProperty("color", color,
defaultValue: foundation_.kNullDefaultValue));
properties.add(new FloatProperty("opacity", opacity,
defaultValue: foundation_.kNullDefaultValue));

正在加载...
取消
保存