Time Picker
Time pickers allow the user to select a single time.
The selected time is indicated by the filled circle at the end of the clock hand.
Basic usage
The time picker is rendered as a modal dialog on mobile, and a textbox with a popup on desktop.
Press Enter to start editing
Static mode
It's possible to render any time picker inline. This will enable building custom popover/modal containers.
123456789101112
Press Enter to start editing
Responsiveness
The time picker component is designed and optimized for the device it runs on.
- The
MobileTimePicker
component works best for touch devices and small screens. - The
DesktopTimePicker
component works best for mouse devices and large screens.
By default, the TimePicker
component renders the desktop version if the media query @media (pointer: fine)
matches.
This can be customized with the desktopModeMediaQuery
prop.
There are certain caveats when testing pickers, please refer to this section for more information.
051015202530354045505500
Press Enter to start editing
123456789101112
Press Enter to start editing