diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e3c8a0..1a81998 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/backgroundRadialGradient.go b/backgroundRadialGradient.go index acad729..e39a3d7 100644 --- a/backgroundRadialGradient.go +++ b/backgroundRadialGradient.go @@ -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,