mirror of https://github.com/anoshenko/rui.git
Updated CHANGELOG.md
This commit is contained in:
parent
cccf1e6ee1
commit
0919376f09
|
@ -18,10 +18,12 @@
|
||||||
NewInsetViewShadow function -> NewInsetShadow
|
NewInsetViewShadow function -> NewInsetShadow
|
||||||
NewShadowWithParams function -> NewShadowProperty
|
NewShadowWithParams function -> NewShadowProperty
|
||||||
|
|
||||||
* Added functions: NewBounds, NewEllipticRadius, NewRadii,
|
* Added functions: NewBounds, NewEllipticRadius, NewRadii, NewLinearGradient, NewCircleRadialGradient,
|
||||||
GetPushTransform, GetPushDuration, GetPushTiming, IsMoveToFrontAnimation,
|
NewEllipseRadialGradient, GetPushTransform, GetPushDuration, GetPushTiming, IsMoveToFrontAnimation,
|
||||||
GetBackground, GetMask, GetBackgroundClip,GetBackgroundOrigin, GetMaskClip, GetMaskOrigin.
|
GetBackground, GetMask, GetBackgroundClip,GetBackgroundOrigin, GetMaskClip, GetMaskOrigin.
|
||||||
|
|
||||||
|
* Added SetConicGradientFillStyle and SetConicGradientStrokeStyle methods to Canvas interface.
|
||||||
|
|
||||||
* Changed Push, Pop, MoveToFront, and MoveToFrontByID methods of StackLayout interface.
|
* Changed Push, Pop, MoveToFront, and MoveToFrontByID methods of StackLayout interface.
|
||||||
|
|
||||||
* Removed DefaultAnimation, StartToEndAnimation, EndToStartAnimation, TopDownAnimation, and BottomUpAnimation constants.
|
* Removed DefaultAnimation, StartToEndAnimation, EndToStartAnimation, TopDownAnimation, and BottomUpAnimation constants.
|
||||||
|
|
|
@ -79,7 +79,7 @@ func NewCircleRadialGradient[radiusType SizeUnit | RadialGradientRadiusType](xCe
|
||||||
return NewBackgroundRadialGradient(params)
|
return NewBackgroundRadialGradient(params)
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewCircleRadialGradient creates the new background ellipse radial gradient.
|
// NewEllipseRadialGradient creates the new background ellipse radial gradient.
|
||||||
func NewEllipseRadialGradient[radiusType []SizeUnit | RadialGradientRadiusType](xCenter, yCenter SizeUnit, radius radiusType, repeating bool, point1 GradientPoint, point2 GradientPoint, points ...GradientPoint) BackgroundElement {
|
func NewEllipseRadialGradient[radiusType []SizeUnit | RadialGradientRadiusType](xCenter, yCenter SizeUnit, radius radiusType, repeating bool, point1 GradientPoint, point2 GradientPoint, points ...GradientPoint) BackgroundElement {
|
||||||
params := Params{
|
params := Params{
|
||||||
RadialGradientShape: EllipseGradient,
|
RadialGradientShape: EllipseGradient,
|
||||||
|
|
Loading…
Reference in New Issue