smart_custom_button 0.0.2
smart_custom_button: ^0.0.2 copied to clipboard
A Flutter package for custom buttons with solid or gradient colors, icon, and loading state.
smart_custom_button #
Created by Kaish
A Flutter package for custom buttons with:
- Solid or gradient backgrounds
- Optional icon
- Loading state
- Rounded corners, elevation, and padding
Usage #
CustomButton(
text: "Gradient Button",
gradient: LinearGradient(colors: [Colors.purple, Colors.blue]),
onPressed: () => print("Clicked"),
)