Skip to content

Commit

Permalink
Adjust flutter 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
luckysmg committed Jan 26, 2023
1 parent befd0e2 commit 23bb5a8
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## [3.1.0] - Adjust flutter 3.7
## [3.0.7] - Fix backgroundColor.
## [3.0.6] - Fix lints.
## [3.0.5] - Fix lints.
Expand Down
2 changes: 1 addition & 1 deletion README-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Alipay | Wechat |
#### pub 仓库点这里: [pub](https://pub.dev/packages/flutter_swipe_action_cell)
#### 安装:
```yaml
flutter_swipe_action_cell: ^3.0.7
flutter_swipe_action_cell: ^3.1.0
```
<br/>
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Alipay | Wechat |
##### install:

```yaml
flutter_swipe_action_cell: ^3.0.7
flutter_swipe_action_cell: ^3.1.0
```
## 1.Preview:
Expand Down
2 changes: 1 addition & 1 deletion lib/core/cell.dart
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ class SwipeActionCellState extends State<SwipeActionCell>

void _addScrollListener() {
if (widget.closeWhenScrolling) {
scrollPosition = Scrollable.of(context)?.position;
scrollPosition = Scrollable.maybeOf(context)?.position;
scrollPosition?.isScrollingNotifier.addListener(_scrollListener);
}
}
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_swipe_action_cell
description: An awesome UI package incluing iOS style cell swipe action effect.You can use this package to implement iOS style tableView cell swipe action
version: 3.0.7
version: 3.1.0
homepage: https://github.com/luckysmg/flutter_swipe_action_cell

environment:
Expand Down

0 comments on commit 23bb5a8

Please sign in to comment.