I want to create a custom calendar, like this:
How can I do this?
Related
I need to differentiate between the section of a date and the browsing months event.
Right now, both fire onChange event for native Date Picker.
I tried inspecting the object but both events fire objects that look similar.
Material UI Date Picker
How to differentiate between two events?
THanks.
How to create an event calendar in Flutter like google calender to add appointments and events?
Try using this plugin, may help with that: https://pub.dev/packages/device_calendar
When Mui MobileDatePicker was clicked, calendar likes picture 1.(left)
but I want to show calendar like picture 2(right) to the user.
how can i change the calendar?
The reason I want to use MobileDatePicker is to remove the calendar icon next to textfield in DatePicker.
If there is a way to get rid of the icon and make the calendar appear when the text is clicked, DatePicker would be great.
use showToolbar props to show/hide toolbar in MobileDatePicker. for more customization check https://mui.com/api/mobile-date-picker/
'''
<MobileDatePicker
...
showToolbar={false}
/>
...
I am trying to achieve this type of calendar with flutter. Its similar to that of google calendar which highlights the week day while closed and toggles to show the full month when tapped. Is there any library around to achieve this?
I have to make event show in box of date in calendar with color in background.But i don't know how to display it.What i have to use?What is logic for it?