Description
Hello, thank you for great widgets, but I found issue in iPhone 6 with iOS 12.4.5, date 24 positioned horizontally(see screenshot)
code:
Widget _calendarWidget(BuildContext context) { return Center( child: Container( child: SfDateRangePicker( monthViewSettings: DateRangePickerMonthViewSettings( firstDayOfWeek: 1, ), onSelectionChanged: _onSelectionChanged, selectionMode: DateRangePickerSelectionMode.range, minDate: DateTime.now(), showNavigationArrow: false, allowViewNavigation: true, navigationDirection: DateRangePickerNavigationDirection.horizontal, selectionShape: DateRangePickerSelectionShape.circle, headerHeight: 60, rangeSelectionColor: Colors.red.withOpacity(0.5), endRangeSelectionColor: Colors.red, startRangeSelectionColor: Colors.red, ), ),); }
How can I fix it ?