v2.0.0
✨ New Features
- Added support for multiple header slivers. (#3)
- Enhanced the scroll behavior for a smoother and more seamless experience.
- Synchronized the
NestedScrollViewsource code with Flutter 3.19.0-5.0.pre for better compatibility and performance.
🔧 Fixes
- Corrected the default physics setting for
NestedScrollView. - Resolved an issue where
NestedScrollViewwas not adhering to user-specified physics settings. (#4) - Improved synchronization between inner and outer scroll views. (#4)
🚀 Upgrade and Migration Guide
With the release of version 2.0.0, there are a few important changes that require action when upgrading from an earlier version.
For Deprecated Widgets:
If you are using OverlapAbsorberPlus or OverlapInjectorPlus in your code, follow these steps:
- Locate any header slivers wrapped with
OverlapAbsorberPlusand remove theOverlapAbsorberPluswrapper. - Remove any
OverlapInjectorPluswidget that was placed atop your scroll views.
For OverscrollBehavior:
Search your codebase for any instance of OverscrollType and replace it with OverscrollBehavior. This will ensure compatibility with the new naming convention.
By following these steps, you should be able to smoothly transition to version 2.0.0 without any significant issues. As always, it is recommended to test your application thoroughly after performing an upgrade to ensure that all features work as intended.