Home > Blockchain >  Flutter SFCalender hide today button
Flutter SFCalender hide today button

Time:06-25

I am using the enter image description here

The Today-Button.

I don't want it there but I can't find any way to disable it! Also it looks a bit buggy (with the 2 "x" inside) ? Is there any way to disable it? It is also not staying inside the main calenders bounds...

Happy for every help here! Could only find this issue but no reply from the team so maybe someone from the community can help me out here :)

CodePudding user response:

Seems like param you are looking for is showDatePickerButton in SfCalendar constructor

SfCalendar({
...
this.showDatePickerButton = false,
...
})

Just remove it or set to false

CodePudding user response:

There is a property called showTodayButton you just have to set it to false showTodayButton: false

  • Related