'How to hide header in mui mobile datepicke?

how to hide this block on mobile version mui datepicker?

enter image description here



Solution 1:[1]

You must set the showToolbarprop to false in order to hide that section. The documentation says that false is the default value, but that doesn't seem to be the case.

 <MobileDatePicker
    ...
    showToolbar={false}
 />

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Trismuto