- Updates minimum supported SDK version to Flutter 3.3/Dart 2.18.
- Aligns Dart and Flutter SDK constraints.
- Removes const keyword from PointerInterceptor's constructor.
- Updates minimum Flutter version to 3.0.
- Fixes lint warnings.
- (Temporarily) helps tests introduced in prior version to pass in
stable
. (This will be removed whenmaster
rolls tostable
) - Updates README to reference the correct github URL.
- Updates example code and integration tests to accomodate hit-testing changes in the Flutter web engine.
- Require minimal version of flutter SDK to be
2.10
- Marked
PointerInterceptor
as invisible, so it can be optimized by the engine. - (Version Retracted. This attempted to use an API from Flutter
2.10
in earlier versions of Flutter. Fixed in v0.9.3)
- Removed
android
andios
directories fromexample
, as the example doesn't build for those platforms. - Added
intercepting
field to allow for conditional pointer interception
- Change sizing of HtmlElementView so it works well when slotted.
- Migrates to null safety.
- Use
ElevatedButton
instead of the deprecatedRaisedButton
in example and docs.
- Update README.md so images render in pub.dev
- Initial release of the
PointerInterceptor
widget.