KeyboardActions constructor

const KeyboardActions({
  1. Widget? child,
  2. ScrollPhysics? bottomAvoiderScrollPhysics,
  3. bool enable = true,
  4. bool autoScroll = true,
  5. bool isDialog = false,
  6. @Deprecated('Use tapOutsideBehavior instead.') bool tapOutsideToDismiss = false,
  7. TapOutsideBehavior tapOutsideBehavior = TapOutsideBehavior.none,
  8. required KeyboardActionsConfig config,
  9. double overscroll = 12.0,
  10. bool disableScroll = false,
  11. bool keepFocusOnTappingNode = false,
})

Implementation

const KeyboardActions(
    {this.child,
    this.bottomAvoiderScrollPhysics,
    this.enable = true,
    this.autoScroll = true,
    this.isDialog = false,
    @Deprecated('Use tapOutsideBehavior instead.')
        this.tapOutsideToDismiss = false,
    this.tapOutsideBehavior = TapOutsideBehavior.none,
    required this.config,
    this.overscroll = 12.0,
    this.disableScroll = false,
    this.keepFocusOnTappingNode = false})
    : assert(child != null);