simple_gradient_text 1.2.1 copy "simple_gradient_text: ^1.2.1" to clipboard
simple_gradient_text: ^1.2.1 copied to clipboard

outdated

Create fast and simple gradient texts, whether linear or radial, you just decide the colors and the text to display, very easy.

gradient_text #

Create gradient texts simply and quickly.

Getting Started #

pub package

Add a linear gradient text #

GradientText(
    'Gradient Text Example',
    style: TextStyle(
        fontSize: 40.0,
    ),
    colors: [
        Colors.blue,
        Colors.red,
        Colors.teal,
    ],
),

Flutter Gradient Text Example

Add a radial gradient text #

GradientText(
    'Gradient Text Example',
    style: TextStyle(
        fontSize: 40.0,
    ),
    gradientType: GradientType.radial,
    radius: 2.5,
    colors: [
        Colors.blue,
        Colors.red,
        Colors.teal,
    ],
),

Flutter Gradient Text Example

108
likes
0
points
58.1k
downloads

Publisher

verified publisheralexastudillo.com

Weekly Downloads

Create fast and simple gradient texts, whether linear or radial, you just decide the colors and the text to display, very easy.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, lint

More

Packages that depend on simple_gradient_text