Updated CHANGELOG.md

This commit is contained in:
Alexei Anoshenko 2024-12-04 19:35:28 +03:00
parent cccf1e6ee1
commit 0919376f09
2 changed files with 5 additions and 3 deletions

View File

@ -18,10 +18,12 @@
NewInsetViewShadow function -> NewInsetShadow
NewShadowWithParams function -> NewShadowProperty
* Added functions: NewBounds, NewEllipticRadius, NewRadii,
GetPushTransform, GetPushDuration, GetPushTiming, IsMoveToFrontAnimation,
* Added functions: NewBounds, NewEllipticRadius, NewRadii, NewLinearGradient, NewCircleRadialGradient,
NewEllipseRadialGradient, GetPushTransform, GetPushDuration, GetPushTiming, IsMoveToFrontAnimation,
GetBackground, GetMask, GetBackgroundClip,GetBackgroundOrigin, GetMaskClip, GetMaskOrigin.
* Added SetConicGradientFillStyle and SetConicGradientStrokeStyle methods to Canvas interface.
* Changed Push, Pop, MoveToFront, and MoveToFrontByID methods of StackLayout interface.
* Removed DefaultAnimation, StartToEndAnimation, EndToStartAnimation, TopDownAnimation, and BottomUpAnimation constants.

View File

@ -79,7 +79,7 @@ func NewCircleRadialGradient[radiusType SizeUnit | RadialGradientRadiusType](xCe
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 {
params := Params{
RadialGradientShape: EllipseGradient,