How to change row height for weekly calendar? i.e. I am showing weekly calendar with height of 120 But it is showing very tiny dates under week days. how can make them bigger?
Screen Shot of my view.

@BurhanMughal try to play with Heigh Attributes in StoryBoard. I had the same problem and I started to change the library classes related with collection view flow layout, but if you don't have to make a big customisation this is the fastest way, it works for me. ¡I expect this will help you 😃!

I had the same problem till I figured out that FSCalendar is always calculating the row height for the monthly calendar. You need to look at FSCalendar.m - (CGFloat)preferredRowHeight:
if (!self.floatingMode) {
_preferredRowHeight = (contentHeight-padding*2)/6.0;
}
So you could either remove the /6.0 or set the calendar frame height to something like (finalHeight - headerHeight - weekdayHeight - 10) * 6 + headerHeight + weekdayHeight
I think the row height should be calculated differently if only the weekly calendar is shown. This would it make much easier.
@WenchaoD can you fix it? or accept PR?
Any plans to merge this in? Facing same problem with week view!
this is my one..I can select calendar dates in two colors

the same
Most helpful comment
I had the same problem till I figured out that FSCalendar is always calculating the row height for the monthly calendar. You need to look at
FSCalendar.m- (CGFloat)preferredRowHeight:So you could either remove the
/6.0or set the calendar frame height to something like(finalHeight - headerHeight - weekdayHeight - 10) * 6 + headerHeight + weekdayHeightI think the row height should be calculated differently if only the weekly calendar is shown. This would it make much easier.