BasfDropDownInput constructor

const BasfDropDownInput({
  1. required TextEditingController controller,
  2. required List<String> values,
  3. Key? key,
  4. String? labelText,
  5. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
  6. MainAxisAlignment mainAxisAlignment = MainAxisAlignment.end,
  7. bool isExpanded = false,
  8. bool isLoading = false,
  9. bool isDisabled = false,
  10. bool isMandatory = false,
})

A BASF-styled dropdown input

Implementation

const BasfDropDownInput({
  required this.controller,
  required this.values,
  super.key,
  this.labelText,
  this.crossAxisAlignment = CrossAxisAlignment.center,
  this.mainAxisAlignment = MainAxisAlignment.end,
  this.isExpanded = false,
  this.isLoading = false,
  this.isDisabled = false,
  this.isMandatory = false,
});