KeyboardWithDoneButton constructor
const
KeyboardWithDoneButton(- {Key? key,
- required List<FocusNode> focusNodeList,
- required Widget child,
- required void onDoneClicked(
)?,
- bool showNextButton = true,
- bool autoScroll = true,
- bool disableScroll = false,
- double overscroll = 60.0}
)
Implementation
const KeyboardWithDoneButton({
super.key,
required this.focusNodeList,
required this.child,
required this.onDoneClicked,
this.showNextButton = true,
this.autoScroll = true,
this.disableScroll = false,
this.overscroll = 60.0,
});