QsKeyboardAvoidanceView constructor

const QsKeyboardAvoidanceView({
  1. required Widget child,
  2. bool enabled = true,
  3. double spacing = 0,
  4. Duration duration = const Duration(milliseconds: 250),
  5. Curve curve = Curves.easeOutCubic,
  6. Key? key,
})

Implementation

const QsKeyboardAvoidanceView({
  required this.child,
  this.enabled = true,
  this.spacing = 0,
  this.duration = const Duration(milliseconds: 250),
  this.curve = Curves.easeOutCubic,
  super.key,
}) : assert(spacing >= 0);