You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While building version 0.6.0 of smooth_sheets an error is thrown for Flutter versions lower than 3.22.0.
The throw error is as follows: .pub-cache/hosted/pub.dev/smooth_sheets-0.6.0/lib/src/foundation/sheet_drag.dart:300:34: Error: The getter 'localPosition' isn't defined for the class 'DragEndDetails'.
It boils down to this change to Flutter itself which is only available since Flutter 3.22.0.
This error does not occur for smooth_sheets version 0.5.3 while building with Flutter version 3.19.3. Due to package constraints we are currently not yet able to upgrade to the latest Flutter version.
The text was updated successfully, but these errors were encountered:
…ersions in CI (#235)
## Related issues (optional)
Closes#229.
## Description
The workflow file was updated to run unit tests and static analysis for
both the lowest and highest supported Flutter SDK versions. This
approach helps detect potential compatibility issues across the entire
supported SDK range. For example, issue #144 stemmed from accidentally
using newly added APIs in Flutter 3.22 that don't exist in lower
versions, while issue #233 arose due to a breaking change introduced in
Flutter 3.24.
## Summary (check all that apply)
- [ ] Modified / added code
- [ ] Modified / added tests
- [ ] Modified / added examples
- [x] Modified / added others (pubspec.yaml, workflows, etc...)
- [ ] Updated README
- [ ] Contains breaking changes
- [ ] Created / updated migration guide
- [ ] Incremented version number
- [ ] Updated CHANGELOG
While building version
0.6.0
ofsmooth_sheets
an error is thrown for Flutter versions lower than3.22.0
.The throw error is as follows:
.pub-cache/hosted/pub.dev/smooth_sheets-0.6.0/lib/src/foundation/sheet_drag.dart:300:34: Error: The getter 'localPosition' isn't defined for the class 'DragEndDetails'.
It boils down to this change to Flutter itself which is only available since Flutter
3.22.0
.This error does not occur for
smooth_sheets
version0.5.3
while building with Flutter version3.19.3
. Due to package constraints we are currently not yet able to upgrade to the latest Flutter version.The text was updated successfully, but these errors were encountered: