gradient_elevated_button 0.0.3 copy "gradient_elevated_button: ^0.0.3" to clipboard
gradient_elevated_button: ^0.0.3 copied to clipboard

Custom Flutter button with gradient background for visually appealing UI.

GradientElevatedButton #

GradientElevatedButton is Custom Flutter button with gradient background for visually appealing UI.

Installation #

To use GradientElevatedButton, add it to your dependencies in pubspec.yaml:

dependencies :
  gradient_elevated_button : ^0.0.3

Usage #

Simply import the package and use the GradientElevatedButton widget in your Flutter app. Here is an example:

import 'package:suggestion_input_field/suggestion_input_field.dart';  
  
        GradientElevatedButton(
          onPressed: () {

          },
          style: GradientElevatedButton.styleFrom(
            gradient: const LinearGradient(colors: [
              Color.fromARGB(255, 166, 206, 57),
              Color.fromARGB(255, 0, 175, 173),
            ],
              begin: Alignment.topCenter,
              end: Alignment.bottomCenter,
            ),
          ),
          child: const Text("This is Gradient Elevated Button"),
        ),

Example #

click here for example

Issues and feedback #

Please file issues and feedback using the Github issues page for this repository.

If you have any suggestions or feedback, please send an email to chegz.dev@gmail.com and we'll be happy to hear from you!

7
likes
0
pub points
84%
popularity

Publisher

unverified uploader

Custom Flutter button with gradient background for visually appealing UI.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on gradient_elevated_button