KiteDropdown<T> constructor

const KiteDropdown<T>({
  1. required List<T> items,
  2. required String itemLabel(
    1. T item
    ),
  3. required ValueChanged<T?> onChanged,
  4. Key? key,
  5. T? value,
  6. String? label,
  7. String? hint,
  8. Widget? prefixIcon,
  9. bool enabled = true,
  10. String? sheetTitle,
})

Implementation

const KiteDropdown({
  required this.items,
  required this.itemLabel,
  required this.onChanged,
  super.key,
  this.value,
  this.label,
  this.hint,
  this.prefixIcon,
  this.enabled = true,
  this.sheetTitle,
});