The date picker component is designed and optimized for the device it runs on.
The MobileDatePicker component works best for touch devices and small screens.
The DesktopDatePicker component works best for mouse devices and large screens.
By default, the DatePicker 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.
Form props
The date picker component can be disabled or read-only.
Use LocalizationProvider to change the date-library locale that is used to render the date picker.
See the documentation page about localization for more details.
Jalali calendar system
Install date-fns-jalali and use @date-io/date-fns-jalali adapter to support Jalali calendar.
It's possible to combine year, month, and date selection views. Views will appear in the order they're included in the views array.
Landscape orientation
For ease of use, the date picker will automatically change the layout between portrait and landscape by subscription to the window.orientation change. You can force a specific layout using the orientation prop.
Some lower-level sub-components (DateCalendar, MonthCalendar, and YearCalendar) are also exported.
April 2022
SMTWTFS
Custom input component
You can customize the rendering of the input with the renderInput prop. Make sure to spread ref and inputProps correctly to the custom input component.
You can customize the month layout with some props.
To shows all days of displayed weeks, included those outside of the current month, use showDaysOutsideCurrentMonth.
By default, only weeks of the current month are displayed, but you can provide a total number of week to display with fixedWeekNumber prop.
This value is usually set to 6 for Gregorian calendars, because months display can vary between 4 and 6 weeks.
Sometimes it may be necessary to display additional info right in the calendar. Here's an example of prefetching and displaying server-side data using the onMonthChange, loading, and components.Day props.
Helper text
You can show a helper text with the date format accepted.
mm/dd/yyyy
<LocalizationProviderdateAdapter={AdapterDayjs}><DatePickerlabel="Helper text example"value={value}onChange={(newValue)=>{setValue(newValue);}}renderInput={(params)=>(<TextField{...params}helperText={params?.inputProps?.placeholder}/>)}/></LocalizationProvider>