# Functions
NewCircle returns a new Circle instance.
NewColorRGBAAnimation sets up a new animation that will transition from the start to stop Color over the specified Duration.
NewHorizontalGradient creates a new horizontally travelling linear gradient.
NewImageFromFile creates a new image from a local file.
NewImageFromImage returns a new Image instance that is rendered from the Go image.Image passed in.
NewImageFromReader creates a new image from a data stream.
NewImageFromResource creates a new image by loading the specified resource.
NewImageFromURI creates a new image from named resource.
NewLine returns a new Line instance.
NewLinearGradient creates a linear gradient at the specified angle.
NewPositionAnimation sets up a new animation that will transition from the start to stop Position over the specified Duration.
NewRadialGradient creates a new radial gradient.
NewRaster returns a new Image instance that is rendered dynamically using the specified generate function.
NewRasterFromImage returns a new Raster instance that is rendered from the Go image.Image passed in.
NewRasterWithPixels returns a new Image instance that is rendered dynamically by iterating over the specified pixelColor function for each x, y pixel.
NewRectangle returns a new Rectangle instance.
NewSizeAnimation sets up a new animation that will transition from the start to stop Size over the specified Duration.
NewText returns a new Text implementation.
NewVerticalGradient creates a new vertically travelling linear gradient.
RecolorSVG takes a []byte containing SVG content, and returns new SVG content, re-colorized to be monochrome with the given color.
Refresh instructs the containing canvas to refresh the specified obj.
# Constants
DurationShort is the time a subtle or small transition should use.
DurationStandard is the time a standard interface animation will run.
(Fit).
ImageFillOriginal ensures that the container grows to the pixel dimensions required to fit the original image.
ImageFillStretch will scale the image to match the Size() values.
ImageScaleFastest will scale the image using hardware GPU if available
Since: 2.0.
ImageScalePixels will scale the image using NearestNeighbor filter (or GL equivalent).
ImageScaleSmooth will scale the image using ApproxBiLinear filter (or GL equivalent).
# Structs
Circle describes a colored circle primitive in a Fyne canvas.
Image describes a drawable image area that can render in a Fyne canvas The image may be a vector or a bitmap representation, it will fill the area.
Line describes a colored line primitive in a Fyne canvas.
LinearGradient defines a Gradient travelling straight at a given angle.
RadialGradient defines a Gradient travelling radially from a center point outward.
Raster describes a raster image area that can render in a Fyne canvas.
Rectangle describes a colored rectangle primitive in a Fyne canvas.
Text describes a text primitive in a Fyne canvas.
# Type aliases
ImageFill defines the different type of ways an image can stretch to fill its space.
ImageScale defines the different scaling filters used to scaling images.