SingleInputScreen constructor
const
SingleInputScreen({
- Key? key,
- required String inputTitle,
- required Widget inputWidget,
- VoidCallback? onBackButtonPressed,
- VoidCallback? onNextButtonPressed,
- bool nextButtonEnabled = true,
- Widget? helperWidget,
- String? errorText,
- bool loading = false,
Implementation
const SingleInputScreen({
super.key,
required this.inputTitle,
required this.inputWidget,
this.onBackButtonPressed,
this.onNextButtonPressed,
this.nextButtonEnabled = true,
this.helperWidget,
this.errorText,
this.loading = false,
});