I am using XamForms.Enhanced.Calendar
in my project and I am marking special dates on it. It is working fine on the android device like the below screenshot but not showing the special dates on the ios device:
Android Screenshot:
IOS Screenshot:
My code:
SpecialDate newDate = new SpecialDate(dateTime)
{
Selectable = true,
BackgroundPattern = new BackgroundPattern(1)
{
Pattern = new List<Pattern>
{
new Pattern { WidthPercent = 1f, HightPercent = 0.7f, Color = Color.White },
new Pattern{ WidthPercent = 1f, HightPercent = 0.3f, Color = Color.FromHex("#f39c12"), Text = model.title.Replace("'", "'"), TextColor=Color.Black, TextSize=10, TextAlign=TextAlign.LeftCenter},
}
},
//BackgroundColor = Color.FromHex("#fec208"),
//TextColor = Color.White
};
In Ios device only showing dates, no event details are showing in calendar. Are there any additional settings do I need to add for showing the special dates on the Calendar?
For windows, I have added init code like below, but it is not working.
The plugin does not support on Windows.
@Cole Xia (Shanghai Wicresoft Co,.Ltd.) Thanks for the update
Sign in to comment