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