UElevatedButton constructor

const UElevatedButton({
  1. Key? key,
  2. String? title,
  3. Widget? titleWidget,
  4. VoidCallback? onTap,
  5. IconData? icon,
  6. double? width,
  7. double? height,
  8. TextStyle? textStyle,
  9. Color? backgroundColor,
  10. EdgeInsets? padding,
})

Implementation

const UElevatedButton({
  super.key,
  this.title,
  this.titleWidget,
  this.onTap,
  this.icon,
  this.width,
  this.height,
  this.textStyle,
  this.backgroundColor,
  this.padding,
});