SingleInputScreen constructor

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