art_buttons_kh 0.0.1 art_buttons_kh: ^0.0.1 copied to clipboard
sample button style
Art Buttons kh Style #
Art buttons kh package lets you add a beautiful gradient button to your Flutter app.
Installation #
- Add the latest version of package to your pubspec.yaml (and run
dart pub get
):
dependencies:
art_buttons_kh: ^0.0.1
- Import the package and use it in your Flutter App.
import 'package:art_buttons_kh/art_buttons_kh.dart';
Example #
There are a number of properties that you can modify:
final Function? onPressed; final String? text; final Color? textColor; final double? height; final double? width; final Color? backgroundColor; final Color? disableBackgroundColor; final EdgeInsetsGeometry? margin; final double? radius; final double? elevation; final double? fontSize = 18;
|