gradient_widgets 0.2.1 copy "gradient_widgets: ^0.2.1" to clipboard
gradient_widgets: ^0.2.1 copied to clipboard

outdated

Gradients on widgets

Gradient Widgets

Gradient Widgets #

A minimal set of Flutter widgets wrapped with gradients.

You can use them when your UI needs user attention/focus, , e.g., login or send actions, or important shopping item title (see Gradient Screens to get the idea 😉)

☑️ GradientText

☑️ GradientCard

☑️ GradientButton

☑️ CircularGradientButton

◻️ ProgressBar

Usage #

GradientCard #

GradientCard(gradient: Gradients.tameer);

most parameters are the same as the Card.

GradientButton #

GradientButton(
                 child: Text('Gradient'),
                 callback: () {},
                 gradient: Gradients.backToFuture,
           ),

most parameters are the same as any *Button.

CircularGradientButton #

CircularGradientButton(
                 child: Icon(Icons.gradient),
                 callback: (){},
                 gradient: Gradients.rainbowBlue,
           ),

most parameters are the same as FloatingActionButton.

GradientText #

GradientText('Hello',
             shaderRect: Rect.fromLTWH(0.0, 0.0, 50.0, 50.0),
             gradient: Gradients.hotLinear,
             style: TextStyle(fontSize: 40.0,),);

all parameters are the same as the Text.

Getting Started #

For help getting started with Flutter, view our online documentation.

For help on editing package code, view the documentation.

88
likes
0
pub points
93%
popularity

Publisher

unverified uploader

Gradients on widgets

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on gradient_widgets