awesome_button

Creator: coderz1093

Last updated:

0 purchases

awesome_button Image
awesome_button Images

Languages

Categories

Add to Cart

Description:

awesome button

AwesomeButton #
This is a pre-built button for flutter with an awesome look.
Installation #
Add the awesome_button to your dependencies in your pubspec.yaml.
awesome_button: ^1.0.2
copied to clipboard
Usage #
Import the AwesomeButton.dart using this line below.
import 'package:awesome_button/awesome_button.dart';
copied to clipboard
Add the AwesomeButton widget to your widget tree and provide your parameter to it, like examples below.
Example #

AwesomeButton(
blurRadius: 10.0,
splashColor: Color.fromRGBO(255, 255, 255, .4),
borderRadius: BorderRadius.circular(37.5),
height: 75.0,
width: 200.0,
onTap: () => print("tapped"),
color: Colors.redAccent,
child: Text(
"Awesome Button",
style: TextStyle(
color: Colors.white,
fontSize: 20.0,
),
),
),
copied to clipboard

AwesomeButton(
blurRadius: 10.0,
splashColor: Color.fromRGBO(255, 255, 255, .4),
borderRadius: BorderRadius.circular(50.0),
height: 100.0,
width: 100.0,
onTap: () => print("tapped"),
color: Colors.greenAccent,
child: Icon(
Icons.account_circle,
color: Colors.white,
size: 50.0,
),
),
copied to clipboard

AwesomeButton(
blurRadius: 10.0,
splashColor: Color.fromRGBO(255, 255, 255, .4),
borderRadius: BorderRadius.circular(25.0),
height: 75.0,
width: 200.0,
onTap: () => print("tapped"),
color: Colors.orangeAccent,
child: Text(
"Awesome Button",
style: TextStyle(
color: Colors.white,
fontSize: 20.0,
),
),
),
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.