AtomicSimpleDatePicker constructor

const AtomicSimpleDatePicker({
  1. Key? key,
  2. required ValueChanged<DateTime?> onDateSelected,
  3. DateTime? initialDate,
  4. String? label,
  5. String hintText = 'Select date',
  6. bool enabled = true,
})

Implementation

const AtomicSimpleDatePicker({
  super.key,
  required this.onDateSelected,
  this.initialDate,
  this.label,
  this.hintText = 'Select date',
  this.enabled = true,
});