skip to Main Content

Is there any built in widget in ‘material’ flutter which allows us to select minutes and seconds in a rotating dial like manner, something similar to TimePicker widget (which only allows to select a particular time in hours and minutes).

I tried searching up on internet and flutter docs, but found nothing.

2

Answers


  1. Seems like you’ve already found the answer with your research. If you want to add seconds to a picked time, I would suggest manually adding them using a DateTime format (Even though the the user will not be able to pick the seconds). But if you want to let the users pick, you have to do it manually or use a package. If you want to know how to add them manually I can help.

    Login or Signup to reply.
  2. Have you checked CupertinoTimerPicker?

    It provides seconds in mode: CupertinoTimerPickerMode.hms,

    CupertinoTimerPicker

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search