I tried to increase the range of Cupertino pickers of more than 24h but didn’t get any success
I am surprised if there is any way to increase the range to more than 24 as only 12 or 24h format is available. I need Valuable suggestions
You can try creating custom picker with CupertinoPicker
.
SizedBox(
width: 200,
height: 200,
child: CupertinoPicker(
itemExtent: 33,
onSelectedItemChanged: (value) {},
children: List.generate(
34,
(index) => Text("$index"),
),
),
),