FTappableStyle constructor

FTappableStyle({
  1. FVariants<FTappableVariantConstraint, FTappableVariant, MouseCursor, Delta> cursor = const .all(.defer),
  2. Duration pressedEnterDuration = const Duration(milliseconds: 200),
  3. Duration pressedExitDuration = .zero,
  4. FTappableMotion motion = const FTappableMotion(),
})

Creates a FTappableStyle.

Implementation

FTappableStyle({
  this.cursor = const .all(.defer),
  this.pressedEnterDuration = const Duration(milliseconds: 200),
  this.pressedExitDuration = .zero,
  this.motion = const FTappableMotion(),
});