Skip to content

Commit

Permalink
feat: update min Flutter and Dart versions
Browse files Browse the repository at this point in the history
  • Loading branch information
minikin committed Aug 9, 2024
1 parent caf33ad commit d0e66fb
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [0.3.1] - 10.00.2024

- Update minimum Flutter and Dart versions to 3.24.0+ and 3.5.0+ respectively.

## [0.3.0+1] - 19.05.2024

- Update README.
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,14 @@ Source: [Human Interface Guidelines.

## Requirements

- Dart: 3.2.0+
- Flutter: 3.16.0+
- Dart: 3.5.0+
- Flutter: 3.24.0+

## Install

```yaml
dependencies:
popover: ^0.3.0+1
popover: ^0.3.1
```
## Example
Expand Down
2 changes: 1 addition & 1 deletion lib/src/popover.dart
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ Future<T?> showPopover<T extends Object?>({
RawDialogRoute<T>(
pageBuilder: (_, animation, __) {
return PopScope(
onPopInvoked: (_) => onPop?.call(),
onPopInvokedWithResult: (didPop, _) => onPop?.call(),
child: PopoverItem(
transition: transition,
child: Builder(builder: bodyBuilder),
Expand Down
6 changes: 3 additions & 3 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: popover
description: A popover is a transient view that appears above other content onscreen when you tap a control or in an area.
version: 0.3.0+1
version: 0.3.1
homepage: https://github.com/minikin/popover

environment:
sdk: '>=3.2.0 <4.0.0'
flutter: '>=3.16.0'
sdk: '>=3.5.0 <4.0.0'
flutter: '>=3.24.0'

dependencies:
flutter:
Expand Down

0 comments on commit d0e66fb

Please sign in to comment.