Skip to content

Commit

Permalink
Merge pull request santa112358#23 from santa112358/0.5.0
Browse files Browse the repository at this point in the history
0.5.0
  • Loading branch information
santa112358 authored Apr 3, 2021
2 parents e4b59e4 + dc01649 commit b08de70
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 0.5.0+1
* Reformat code to pass analytics

## 0.5.0
* Support null safety

Expand Down
6 changes: 5 additions & 1 deletion lib/src/controllers/cell_calendar_page_controller.dart
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,11 @@ class CellCalendarPageController extends PageController {

/// [animateToDate] is recommended
@override
Future<void> animateToPage(int page, {required Duration duration, required Curve curve}) {
Future<void> animateToPage(
int page, {
required Duration duration,
required Curve curve,
}) {
return super.animateToPage(initialPageIndex + page,
duration: duration, curve: curve);
}
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: cell_calendar
description: Modern calendar widget with useful features. Enables to develop well designed calendar in a moment. Inspired by the UI of Google calendar.
version: 0.5.0
version: 0.5.0+1
author: Santa Takahashi
homepage: https://github.com/santa112358/cell_calendar

Expand Down

0 comments on commit b08de70

Please sign in to comment.