CdxFormBuilder constructor

const CdxFormBuilder({
  1. Key? key,
  2. required FormBuilderController controller,
  3. required TextStyle hintStyle,
  4. List<Pair<String, int>>? steps,
  5. StepperType stepperType = StepperType.horizontal,
  6. List<Step>? customSteps,
  7. MainAxisAlignment mainAxisAlignment = MainAxisAlignment.center,
  8. Stream<bool>? showErrorsStream,
  9. String errorMessage = '',
})

Implementation

const CdxFormBuilder({
  super.key,
  required this.controller,
  required this.hintStyle,
  this.steps,
  this.stepperType = StepperType.horizontal,
  this.customSteps,
  this.mainAxisAlignment = MainAxisAlignment.center,
  this.showErrorsStream,
  this.errorMessage = '',
});