KeyboardScroll constructor
const
KeyboardScroll({
- Key? key,
- required KeyboardScrollController controller,
- required Widget child,
- bool closeWhenTap = false,
- bool closeWhenMove = false,
- bool useIOSSystemAnim = false,
- KeyboardScrollType fitType = KeyboardScrollType.fitAddedTextField,
- KeyboardObserverListener? showListener,
- KeyboardObserverListener? hideListener,
- KeyboardAnimationListener? showAnimationListener,
- KeyboardAnimationListener? hideAnimationListener,
- Clip clipBehavior = Clip.hardEdge,
Implementation
const KeyboardScroll({
Key? key,
required this.controller,
required this.child,
this.closeWhenTap = false,
this.closeWhenMove = false,
this.useIOSSystemAnim = false,
this.fitType = KeyboardScrollType.fitAddedTextField,
this.showListener,
this.hideListener,
this.showAnimationListener,
this.hideAnimationListener,
this.clipBehavior = Clip.hardEdge,
}) : super(key: key);