Last updated:
0 purchases
extended icon button
🌐Socials
Extended Icon Button #
Extended Icon Button package lets you add a beautiful Icon Button as per your need to your Flutter app.
Installation #
Add the latest version of package to your pubspec.yaml (and rundart pub get):
dependencies:
extended_icon_button: ^1.0.0
copied to clipboard
Import the package and use it in your Flutter App.
import 'package:extended_icon_button/extended_icon_button';
copied to clipboard
Example #
There are a number of properties can be modified using this package:
✅ height
✅ width
✅ title
✅ title style
✅ icon
✅ icon size
✅ icon color
✅ button color
✅ hover elevation
✅ Button Gradient
ExtendeddIconButton(
height: 50,
width: double.maxFinite,
text: "Details",
titleStyle: TextStyle(fontSize: 30),
textColor: Colors.black87,
icon: Icons.arrow_forward_sharp,
iconColor: Color.fromARGB(255, 0, 0, 0),
gradientColor1: Color(0xFFB84D9B),
gradientColor2: Color(0xFFA060B0),
gradientColor3: Color(0xFF8E6EC0),
hoverElv: 20,
)
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.