static String? datepicker(String? value) { if (value == null || value.isEmpty) { return 'Please select a date'; } return null; }