您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
319 行
15 KiB
319 行
15 KiB
using Unity.UIWidgets.foundation;
|
|
using Unity.UIWidgets.painting;
|
|
using Unity.UIWidgets.service;
|
|
using Unity.UIWidgets.ui;
|
|
using Unity.UIWidgets.widgets;
|
|
using TextStyle = Unity.UIWidgets.painting.TextStyle;
|
|
|
|
namespace Unity.UIWidgets.material {
|
|
public class ChipTheme : InheritedWidget {
|
|
public ChipTheme(
|
|
Key key = null,
|
|
ChipThemeData data = null,
|
|
Widget child = null
|
|
) : base(key: key, child: child) {
|
|
D.assert(child != null);
|
|
D.assert(data != null);
|
|
this.data = data;
|
|
}
|
|
|
|
public readonly ChipThemeData data;
|
|
|
|
public static ChipThemeData of(BuildContext context) {
|
|
ChipTheme inheritedTheme = (ChipTheme) context.inheritFromWidgetOfExactType(typeof(ChipTheme));
|
|
return inheritedTheme?.data ?? Theme.of(context).chipTheme;
|
|
}
|
|
|
|
public override bool updateShouldNotify(InheritedWidget _oldWidget) {
|
|
ChipTheme oldWidget = _oldWidget as ChipTheme;
|
|
return this.data != oldWidget.data;
|
|
}
|
|
}
|
|
|
|
public class ChipThemeData : Diagnosticable {
|
|
public ChipThemeData(
|
|
Color backgroundColor = null,
|
|
Color deleteIconColor = null,
|
|
Color disabledColor = null,
|
|
Color selectedColor = null,
|
|
Color secondarySelectedColor = null,
|
|
Color shadowColor = null,
|
|
Color selectedShadowColor = null,
|
|
EdgeInsets labelPadding = null,
|
|
EdgeInsets padding = null,
|
|
ShapeBorder shape = null,
|
|
TextStyle labelStyle = null,
|
|
TextStyle secondaryLabelStyle = null,
|
|
Brightness? brightness = null,
|
|
float? elevation = null,
|
|
float? pressElevation = null
|
|
) {
|
|
D.assert(backgroundColor != null);
|
|
D.assert(disabledColor != null);
|
|
D.assert(selectedColor != null);
|
|
D.assert(secondarySelectedColor != null);
|
|
D.assert(labelPadding != null);
|
|
D.assert(padding != null);
|
|
D.assert(shape != null);
|
|
D.assert(labelStyle != null);
|
|
D.assert(secondaryLabelStyle != null);
|
|
D.assert(brightness != null);
|
|
this.backgroundColor = backgroundColor;
|
|
this.deleteIconColor = deleteIconColor;
|
|
this.disabledColor = disabledColor;
|
|
this.selectedColor = selectedColor;
|
|
this.secondarySelectedColor = secondarySelectedColor;
|
|
this.shadowColor = shadowColor;
|
|
this.selectedShadowColor = selectedShadowColor;
|
|
this.labelPadding = labelPadding;
|
|
this.padding = padding;
|
|
this.shape = shape;
|
|
this.labelStyle = labelStyle;
|
|
this.secondaryLabelStyle = secondaryLabelStyle;
|
|
this.brightness = brightness;
|
|
this.elevation = elevation;
|
|
this.pressElevation = pressElevation;
|
|
}
|
|
|
|
public static ChipThemeData fromDefaults(
|
|
Brightness? brightness = null,
|
|
Color primaryColor = null,
|
|
Color secondaryColor = null,
|
|
TextStyle labelStyle = null
|
|
) {
|
|
D.assert(primaryColor != null || brightness != null,
|
|
() => "One of primaryColor or brightness must be specified");
|
|
D.assert(primaryColor == null || brightness == null,
|
|
() => "Only one of primaryColor or brightness may be specified");
|
|
D.assert(secondaryColor != null);
|
|
D.assert(labelStyle != null);
|
|
|
|
if (primaryColor != null) {
|
|
brightness = ThemeData.estimateBrightnessForColor(primaryColor);
|
|
}
|
|
|
|
const int backgroundAlpha = 0x1f; // 12%
|
|
const int deleteIconAlpha = 0xde; // 87%
|
|
const int disabledAlpha = 0x0c; // 38% * 12% = 5%
|
|
const int selectAlpha = 0x3d; // 12% + 12% = 24%
|
|
const int textLabelAlpha = 0xde; // 87%
|
|
ShapeBorder shape = new StadiumBorder();
|
|
EdgeInsets labelPadding = EdgeInsets.symmetric(horizontal: 8.0f);
|
|
EdgeInsets padding = EdgeInsets.all(4.0f);
|
|
|
|
primaryColor = primaryColor ?? (brightness == Brightness.light ? Colors.black : Colors.white);
|
|
Color backgroundColor = primaryColor.withAlpha(backgroundAlpha);
|
|
Color deleteIconColor = primaryColor.withAlpha(deleteIconAlpha);
|
|
Color disabledColor = primaryColor.withAlpha(disabledAlpha);
|
|
Color selectedColor = primaryColor.withAlpha(selectAlpha);
|
|
Color secondarySelectedColor = secondaryColor.withAlpha(selectAlpha);
|
|
TextStyle secondaryLabelStyle = labelStyle.copyWith(
|
|
color: secondaryColor.withAlpha(textLabelAlpha)
|
|
);
|
|
labelStyle = labelStyle.copyWith(color: primaryColor.withAlpha(textLabelAlpha));
|
|
|
|
return new ChipThemeData(
|
|
backgroundColor: backgroundColor,
|
|
deleteIconColor: deleteIconColor,
|
|
disabledColor: disabledColor,
|
|
selectedColor: selectedColor,
|
|
secondarySelectedColor: secondarySelectedColor,
|
|
labelPadding: labelPadding,
|
|
padding: padding,
|
|
shape: shape,
|
|
labelStyle: labelStyle,
|
|
secondaryLabelStyle: secondaryLabelStyle,
|
|
brightness: brightness
|
|
);
|
|
}
|
|
|
|
public readonly Color backgroundColor;
|
|
|
|
public readonly Color deleteIconColor;
|
|
|
|
public readonly Color disabledColor;
|
|
|
|
public readonly Color selectedColor;
|
|
|
|
public readonly Color secondarySelectedColor;
|
|
|
|
public readonly Color shadowColor;
|
|
|
|
public readonly Color selectedShadowColor;
|
|
|
|
public readonly EdgeInsets labelPadding;
|
|
|
|
public readonly EdgeInsets padding;
|
|
|
|
public readonly ShapeBorder shape;
|
|
|
|
public readonly TextStyle labelStyle;
|
|
|
|
public readonly TextStyle secondaryLabelStyle;
|
|
|
|
public readonly Brightness? brightness;
|
|
|
|
public readonly float? elevation;
|
|
|
|
public readonly float? pressElevation;
|
|
|
|
public ChipThemeData copyWith(
|
|
Color backgroundColor = null,
|
|
Color deleteIconColor = null,
|
|
Color disabledColor = null,
|
|
Color selectedColor = null,
|
|
Color secondarySelectedColor = null,
|
|
Color shadowColor = null,
|
|
Color selectedShadowColor = null,
|
|
EdgeInsets labelPadding = null,
|
|
EdgeInsets padding = null,
|
|
ShapeBorder shape = null,
|
|
TextStyle labelStyle = null,
|
|
TextStyle secondaryLabelStyle = null,
|
|
Brightness? brightness = null,
|
|
float? elevation = null,
|
|
float? pressElevation = null
|
|
) {
|
|
return new ChipThemeData(
|
|
backgroundColor: backgroundColor ?? this.backgroundColor,
|
|
deleteIconColor: deleteIconColor ?? this.deleteIconColor,
|
|
disabledColor: disabledColor ?? this.disabledColor,
|
|
selectedColor: selectedColor ?? this.selectedColor,
|
|
secondarySelectedColor: secondarySelectedColor ?? this.secondarySelectedColor,
|
|
shadowColor: shadowColor ?? this.shadowColor,
|
|
selectedShadowColor: selectedShadowColor ?? this.selectedShadowColor,
|
|
labelPadding: labelPadding ?? this.labelPadding,
|
|
padding: padding ?? this.padding,
|
|
shape: shape ?? this.shape,
|
|
labelStyle: labelStyle ?? this.labelStyle,
|
|
secondaryLabelStyle: secondaryLabelStyle ?? this.secondaryLabelStyle,
|
|
brightness: brightness ?? this.brightness,
|
|
elevation: elevation ?? this.elevation,
|
|
pressElevation: pressElevation ?? this.pressElevation
|
|
);
|
|
}
|
|
|
|
public static ChipThemeData lerp(ChipThemeData a, ChipThemeData b, float t) {
|
|
if (a == null && b == null) {
|
|
return null;
|
|
}
|
|
|
|
return new ChipThemeData(
|
|
backgroundColor: Color.lerp(a?.backgroundColor, b?.backgroundColor, t),
|
|
deleteIconColor: Color.lerp(a?.deleteIconColor, b?.deleteIconColor, t),
|
|
disabledColor: Color.lerp(a?.disabledColor, b?.disabledColor, t),
|
|
selectedColor: Color.lerp(a?.selectedColor, b?.selectedColor, t),
|
|
secondarySelectedColor: Color.lerp(a?.secondarySelectedColor, b?.secondarySelectedColor, t),
|
|
shadowColor: Color.lerp(a?.shadowColor, b?.shadowColor, t),
|
|
selectedShadowColor: Color.lerp(a?.selectedShadowColor, b?.selectedShadowColor, t),
|
|
labelPadding: EdgeInsets.lerp(a?.labelPadding, b?.labelPadding, t),
|
|
padding: EdgeInsets.lerp(a?.padding, b?.padding, t),
|
|
shape: ShapeBorder.lerp(a?.shape, b?.shape, t),
|
|
labelStyle: TextStyle.lerp(a?.labelStyle, b?.labelStyle, t),
|
|
secondaryLabelStyle: TextStyle.lerp(a?.secondaryLabelStyle, b?.secondaryLabelStyle, t),
|
|
brightness: t < 0.5f ? a?.brightness ?? Brightness.light : b?.brightness ?? Brightness.light,
|
|
elevation: MathUtils.lerpFloat(a?.elevation ?? 0.0f, b?.elevation ?? 0.0f, t),
|
|
pressElevation: MathUtils.lerpFloat(a?.pressElevation ?? 0.0f, b?.pressElevation ?? 0.0f, t)
|
|
);
|
|
}
|
|
|
|
public override int GetHashCode() {
|
|
var hashCode = this.backgroundColor.GetHashCode();
|
|
hashCode = (hashCode * 397) ^ this.deleteIconColor.GetHashCode();
|
|
hashCode = (hashCode * 397) ^ this.disabledColor.GetHashCode();
|
|
hashCode = (hashCode * 397) ^ this.selectedColor.GetHashCode();
|
|
hashCode = (hashCode * 397) ^ this.secondarySelectedColor.GetHashCode();
|
|
hashCode = (hashCode * 397) ^ this.shadowColor?.GetHashCode() ?? 0;
|
|
hashCode = (hashCode * 397) ^ this.selectedShadowColor?.GetHashCode() ?? 0;
|
|
hashCode = (hashCode * 397) ^ this.labelPadding.GetHashCode();
|
|
hashCode = (hashCode * 397) ^ this.padding.GetHashCode();
|
|
hashCode = (hashCode * 397) ^ this.shape.GetHashCode();
|
|
hashCode = (hashCode * 397) ^ this.labelStyle.GetHashCode();
|
|
hashCode = (hashCode * 397) ^ this.secondaryLabelStyle.GetHashCode();
|
|
hashCode = (hashCode * 397) ^ this.brightness.GetHashCode();
|
|
hashCode = (hashCode * 397) ^ this.elevation.GetHashCode();
|
|
hashCode = (hashCode * 397) ^ this.pressElevation.GetHashCode();
|
|
return hashCode;
|
|
}
|
|
|
|
public bool Equals(ChipThemeData other) {
|
|
return other.backgroundColor == this.backgroundColor
|
|
&& other.deleteIconColor == this.deleteIconColor
|
|
&& other.disabledColor == this.disabledColor
|
|
&& other.selectedColor == this.selectedColor
|
|
&& other.secondarySelectedColor == this.secondarySelectedColor
|
|
&& other.shadowColor == this.shadowColor
|
|
&& other.selectedShadowColor == this.selectedShadowColor
|
|
&& other.labelPadding == this.labelPadding
|
|
&& other.padding == this.padding
|
|
&& other.shape == this.shape
|
|
&& other.labelStyle == this.labelStyle
|
|
&& other.secondaryLabelStyle == this.secondaryLabelStyle
|
|
&& other.brightness == this.brightness
|
|
&& other.elevation == this.elevation
|
|
&& other.pressElevation == this.pressElevation;
|
|
}
|
|
|
|
public override bool Equals(object obj) {
|
|
if (ReferenceEquals(null, obj)) {
|
|
return false;
|
|
}
|
|
|
|
if (ReferenceEquals(this, obj)) {
|
|
return true;
|
|
}
|
|
|
|
if (obj.GetType() != this.GetType()) {
|
|
return false;
|
|
}
|
|
|
|
return this.Equals((ChipThemeData) obj);
|
|
}
|
|
|
|
public static bool operator ==(ChipThemeData left, ChipThemeData right) {
|
|
return Equals(left, right);
|
|
}
|
|
|
|
public static bool operator !=(ChipThemeData left, ChipThemeData right) {
|
|
return !Equals(left, right);
|
|
}
|
|
|
|
public override void debugFillProperties(DiagnosticPropertiesBuilder properties) {
|
|
base.debugFillProperties(properties);
|
|
ThemeData defaultTheme = ThemeData.fallback();
|
|
ChipThemeData defaultData = fromDefaults(
|
|
secondaryColor: defaultTheme.primaryColor,
|
|
brightness: defaultTheme.brightness,
|
|
labelStyle: defaultTheme.textTheme.body2
|
|
);
|
|
properties.add(new DiagnosticsProperty<Color>("backgroundColor", this.backgroundColor,
|
|
defaultValue: defaultData.backgroundColor));
|
|
properties.add(new DiagnosticsProperty<Color>("deleteIconColor", this.deleteIconColor,
|
|
defaultValue: defaultData.deleteIconColor));
|
|
properties.add(new DiagnosticsProperty<Color>("disabledColor", this.disabledColor,
|
|
defaultValue: defaultData.disabledColor));
|
|
properties.add(new DiagnosticsProperty<Color>("selectedColor", this.selectedColor,
|
|
defaultValue: defaultData.selectedColor));
|
|
properties.add(new DiagnosticsProperty<Color>("secondarySelectedColor", this.secondarySelectedColor,
|
|
defaultValue: defaultData.secondarySelectedColor));
|
|
properties.add(new DiagnosticsProperty<Color>("shadowColor", this.shadowColor,
|
|
defaultValue: defaultData.shadowColor));
|
|
properties.add(new DiagnosticsProperty<Color>("selectedShadowColor", this.selectedShadowColor,
|
|
defaultValue: defaultData.selectedShadowColor));
|
|
properties.add(new DiagnosticsProperty<EdgeInsets>("labelPadding", this.labelPadding,
|
|
defaultValue: defaultData.labelPadding));
|
|
properties.add(
|
|
new DiagnosticsProperty<EdgeInsets>("padding", this.padding, defaultValue: defaultData.padding));
|
|
properties.add(new DiagnosticsProperty<ShapeBorder>("shape", this.shape, defaultValue: defaultData.shape));
|
|
properties.add(new DiagnosticsProperty<TextStyle>("labelStyle", this.labelStyle,
|
|
defaultValue: defaultData.labelStyle));
|
|
properties.add(new DiagnosticsProperty<TextStyle>("secondaryLabelStyle", this.secondaryLabelStyle,
|
|
defaultValue: defaultData.secondaryLabelStyle));
|
|
properties.add(new EnumProperty<Brightness?>("brightness", this.brightness,
|
|
defaultValue: defaultData.brightness));
|
|
properties.add(new FloatProperty("elevation", this.elevation, defaultValue: defaultData.elevation));
|
|
properties.add(new FloatProperty("pressElevation", this.pressElevation,
|
|
defaultValue: defaultData.pressElevation));
|
|
}
|
|
}
|
|
}
|