rebeccaXam / XamForms.Controls.Calendar

Custom calendar control for Xamarin.Forms. Customizable border thickness, color, background colors and formats. Version 1.0.8 or lower Built against: 2.1.0.6521 Version 1.1.0 or above Built against: 2.3.4.231
MIT License
132 stars 69 forks source link

Importing firebase data into the Special Date parameter #105

Open developersimsek opened 5 years ago

developersimsek commented 5 years ago

Hello there, I'm sorry, I've looked at open issues, but I can't find a solution to my problem. What I want to do; Importing the dates in the firebase database to SpecialDates. I successfully retrieve data from Firebase, but I cannot import it to the calendar. I tried this with the following method, but I didn't succeed. I would be glad if you help. Thanks in advance ...

Xaml source

**Cs Source** public Detail() { InitializeComponent(); DBFire data; data = new DBFire(); Device.BeginInvokeOnMainThread(async () => { calender.BindingContext = await data.GetList(); } ); }