i am using date range picker for quite a time now but since 2-3 days i am facing a very strange issue regardless of the version I change. Even if i add the very basic code from your site -
Positioned( left: 20, top: 50, right: 20, bottom: 50, child: Container( color: Colors.white, height: screenWidth/2, width: screenWidth/2, child: Center( child: SfDateRangePicker( onSelectionChanged: _onSelectionChanged, selectionMode: DateRangePickerSelectionMode.range, initialSelectedRange: PickerDateRange( DateTime.now().subtract(const Duration(days: 4)), DateTime.now().add(const Duration(days: 3))), ), ), ), ),
i am getting calendrer like this either using directly or in container. enter image description here
Please let me know any possible reason and solution for this.
trying to display proper calendar in flutter app.