TouchFeedBack constructor

const TouchFeedBack({
  1. required Widget child,
  2. required FutureOr<void> onTapped()?,
  3. List<TouchEffectBuilder> touchEffectBuilders = const <TouchEffectBuilder>[],
  4. bool isAndroidDark = true,
  5. bool isIosDark = true,
  6. Color? tapColor,
  7. String? semanticsLabel,
  8. Color color = Colors.transparent,
  9. double elevation = 0,
  10. BorderRadius? borderRadius,
  11. Color? shadowColor,
  12. ShapeBorder? shapeBorder,
  13. Color? androidSplashColor,
  14. bool forceAndroid = false,
  15. bool forceIOS = false,
  16. bool waitUntilOnTappedFinishesIOS = true,
  17. bool animateAwait = true,
  18. Key? key,
})

Implementation

const TouchFeedBack({
  required this.child,
  required this.onTapped,
  this.touchEffectBuilders = const <TouchEffectBuilder>[],
  this.isAndroidDark = true,
  this.isIosDark = true,
  this.tapColor,
  this.semanticsLabel,
  this.color = Colors.transparent,
  this.elevation = 0,
  this.borderRadius,
  this.shadowColor,
  this.shapeBorder,
  this.androidSplashColor,
  this.forceAndroid = false,
  this.forceIOS = false,
  this.waitUntilOnTappedFinishesIOS = true,
  this.animateAwait = true,
  super.key,
});