SingleInputScreen constructor

const SingleInputScreen({
  1. Key? key,
  2. required String inputTitle,
  3. required Widget inputWidget,
  4. VoidCallback? onBackButtonPressed,
  5. VoidCallback? onNextButtonPressed,
  6. bool nextButtonEnabled = true,
  7. Widget? helperWidget,
  8. String? errorText,
  9. 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,
});