public override void debugFillProperties(DiagnosticPropertiesBuilder properties)
 {
     base.debugFillProperties(properties);
     properties.add(new DiagnosticsProperty <AlignmentGeometry>("alignment",
                                                                alignment, showName: false, defaultValue: foundation_.kNullDefaultValue));
     properties.add(new DiagnosticsProperty <EdgeInsetsGeometry>("padding",
                                                                 padding, defaultValue: foundation_.kNullDefaultValue));
     properties.add(new DiagnosticsProperty <Clip>("clipBehavior", clipBehavior, defaultValue: Clip.none));
     if (color != null)
     {
         properties.add(new DiagnosticsProperty <Color>("bg", color));
     }
     else
     {
         properties.add(new DiagnosticsProperty <Decoration>("bg",
                                                             decoration, defaultValue: foundation_.kNullDefaultValue));
     }
     properties.add(new DiagnosticsProperty <Decoration>("fg",
                                                         foregroundDecoration, defaultValue: foundation_.kNullDefaultValue));
     properties.add(new DiagnosticsProperty <BoxConstraints>("constraints",
                                                             constraints, defaultValue: foundation_.kNullDefaultValue));
     properties.add(new DiagnosticsProperty <EdgeInsetsGeometry>("margin",
                                                                 margin, defaultValue: foundation_.kNullDefaultValue));
     properties.add(ObjectFlagProperty <Matrix4> .has("transform",
                                                      transform));
 }
Example #2
0
 public override void debugFillProperties(DiagnosticPropertiesBuilder description)
 {
     base.debugFillProperties(properties: description);
     description.add(ObjectFlagProperty <Tween <float?> > .has("start", value: _start));
     description.add(ObjectFlagProperty <Tween <float?> > .has("top", value: _top));
     description.add(ObjectFlagProperty <Tween <float?> > .has("end", value: _end));
     description.add(ObjectFlagProperty <Tween <float?> > .has("bottom", value: _bottom));
     description.add(ObjectFlagProperty <Tween <float?> > .has("width", value: _width));
     description.add(ObjectFlagProperty <Tween <float?> > .has("height", value: _height));
 }
Example #3
0
 public override void debugFillProperties(DiagnosticPropertiesBuilder description)
 {
     base.debugFillProperties(properties: description);
     description.add(ObjectFlagProperty <Tween <float?> > .has("left", value: this._left));
     description.add(ObjectFlagProperty <Tween <float?> > .has("top", value: this._top));
     description.add(ObjectFlagProperty <Tween <float?> > .has("right", value: this._right));
     description.add(ObjectFlagProperty <Tween <float?> > .has("bottom", value: this._bottom));
     description.add(ObjectFlagProperty <Tween <float?> > .has("width", value: this._width));
     description.add(ObjectFlagProperty <Tween <float?> > .has("height", value: this._height));
 }
Example #4
0
 public override void debugFillProperties(DiagnosticPropertiesBuilder description)
 {
     base.debugFillProperties(description);
     description.add(new DiagnosticsProperty <AlignmentTween>("alignment", this._alignment, showName: false,
                                                              defaultValue: null));
     description.add(new DiagnosticsProperty <EdgeInsetsTween>("padding", this._padding, defaultValue: null));
     description.add(new DiagnosticsProperty <DecorationTween>("bg", this._decoration, defaultValue: null));
     description.add(
         new DiagnosticsProperty <DecorationTween>("fg", this._foregroundDecoration, defaultValue: null));
     description.add(new DiagnosticsProperty <BoxConstraintsTween>("constraints", this._constraints,
                                                                   showName: false, defaultValue: null));
     description.add(new DiagnosticsProperty <EdgeInsetsTween>("margin", this._margin, defaultValue: null));
     description.add(ObjectFlagProperty <Matrix3Tween> .has("transform", this._transform));
 }
Example #5
0
 public override void debugFillProperties(DiagnosticPropertiesBuilder properties)
 {
     base.debugFillProperties(properties);
     properties.add(new FloatProperty("value", value));
     properties.add(new ObjectFlagProperty <ValueChanged <float> >("onChanged", onChanged, ifNull: "disabled"));
     properties.add(ObjectFlagProperty <ValueChanged <float> > .has("onChangeStart", onChangeStart));
     properties.add(ObjectFlagProperty <ValueChanged <float> > .has("onChangeEnd", onChangeEnd));
     properties.add(new FloatProperty("min", min));
     properties.add(new FloatProperty("max", max));
     properties.add(new IntProperty("divisions", divisions));
     properties.add(new StringProperty("label", label));
     properties.add(new ColorProperty("activeColor", activeColor));
     properties.add(new ColorProperty("inactiveColor", inactiveColor));
 }
Example #6
0
 public override void debugFillProperties(DiagnosticPropertiesBuilder properties)
 {
     base.debugFillProperties(properties);
     properties.add(new DiagnosticsProperty <Alignment>("alignment", this.alignment, showName: false,
                                                        defaultValue: null));
     properties.add(new DiagnosticsProperty <EdgeInsets>("padding", this.padding, defaultValue: null));
     properties.add(new DiagnosticsProperty <Decoration>("bg", this.decoration, defaultValue: null));
     properties.add(
         new DiagnosticsProperty <Decoration>("fg", this.foregroundDecoration, defaultValue: null));
     properties.add(new DiagnosticsProperty <BoxConstraints>("constraints", this.constraints,
                                                             defaultValue: null,
                                                             showName: false));
     properties.add(new DiagnosticsProperty <EdgeInsets>("margin", this.margin, defaultValue: null));
     properties.add(ObjectFlagProperty <Matrix3> .has("transform", this.transform));
 }