AppButton constructor

const AppButton({
  1. Key? key,
  2. VoidCallback? onTapped,
  3. bool tapFeedback = true,
  4. double width = double.infinity,
  5. double height = 48.0,
  6. String? title,
  7. TextStyle? titleTextStyle,
  8. Color? backgroundColor,
  9. Widget? backgroundImage,
  10. double? borderRadius,
})

Implementation

const AppButton({
  super.key,
  this.onTapped,
  this.tapFeedback = true,
  this.width = double.infinity,
  this.height = 48.0,
  this.title,
  this.titleTextStyle,
  this.backgroundColor,
  this.backgroundImage,
  this.borderRadius,
});