I am working on an app for a while now but I'm stuck working with the TimePicker. At the moment it is showing one "ring" with marks for all hours, but I'd like it to show two "rings" both with 12 hours on it.
There are two other questions about this topic on stackoverflow, but none answers the question. One is the other way around and the other has no answers.
This is how it should be:
I searched the web and found out that localizations play some role here. I tried some (the Spanish one sounded to be promising) but it didn't worked. It is also a really strange way to do it over the localizations. Do you have any idea how to solve
The current code is just the normal showTimePicker method: `
time = await showTimePicker(
context: context,
initialTime: TimeOfDay.fromDateTime(widget.notify.fireTime),
);
`