casvanluijtelaar / paged_vertical_calendar

A simple paginated framework for implementing calendar based interfaces.
Apache License 2.0
37 stars 32 forks source link

Disable scroll still scrollable #44

Open ChauCM opened 5 months ago

ChauCM commented 5 months ago
PagedVerticalCalendar(
        minDate: DateTime.now().subtract(const Duration(days: 60)),
        maxDate: DateTime.now().add(const Duration(days: 60)),
        physics: const NeverScrollableScrollPhysics(),
      ),

uploading

casvanluijtelaar commented 4 months ago

When adding the NeverScrollableScrollPhysics to the example project, it blocks the scrolling correctly. So you would need to provide some more information or a minimal reproducible example for me to help you.