-
Notifications
You must be signed in to change notification settings - Fork 184
Open
Description
I am using the 12 Hr Format and would like to also capture AM and PM. Currently it only returns the time. Here's my code:
DateTimePicker(
type: DateTimePickerType.time,
use24HourFormat: false,
locale: Locale('pt', 'BR'),
icon: Icon(Icons.access_time),
timeLabelText: "Choose Opening Time",
onChanged: (val) => storeTiming.startTime = val,
validator: (val) {
print(val);
return null;
},
onSaved: (val) => storeTiming.startTime = val,
),
What am I missing?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels