SafaehKeyboardAwareNav constructor

const SafaehKeyboardAwareNav({
  1. Key? key,
  2. required Widget child,
  3. bool hideWhenKeyboardVisible = true,
  4. Duration? duration,
})

Implementation

const SafaehKeyboardAwareNav({
  super.key,
  required this.child,
  this.hideWhenKeyboardVisible = true,
  this.duration,
});