I want to implement a time picker widget to allow users to record duration (hours and minutes) and I also want to show differently depending on the device platform (iOS or Android).
For iOS, I can use CupertinoTimerPicker
and CupertinoActionSheet
widgets, which are originally included in Flutter. (like this: CupertinoTimerPicker) Users can swipe the picker wheel to select the duration.
However, I can't find the material widget that corresponds to them (like this: time picker for Android).
Is there a material TimerPicker widget in Flutter, or do I have to use a external package?
CodePudding user response:
Yes, Work is in progress, see in github.. https://github.com/flutter/flutter/issues/91605
CodePudding user response:
https://pub.dev/packages/flutter_material_pickers you can try this package I hope this may help you.