Skip to content

Commit

Permalink
Merge pull request #407 from SimformSolutionsPvtLtd/fix/380
Browse files Browse the repository at this point in the history
Fix/380
  • Loading branch information
PRBaraiya authored Sep 18, 2024
2 parents 5d95a3e + 72d8c57 commit 22b8282
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
- Fixes issue in showing quarter hours when startHour is provided. [#387](https://github.com/SimformSolutionsPvtLtd/flutter_calendar_view/issues/387)
- Use `hourLinePainter` in `DayView` [#386](https://github.com/SimformSolutionsPvtLtd/flutter_calendar_view/issues/386)
- Refactor `SideEventArranger` to arrange events properly. [#290](https://github.com/SimformSolutionsPvtLtd/flutter_calendar_view/issues/290)
- Adds generic type in `_InternalWeekViewPageState`. [#380](https://github.com/SimformSolutionsPvtLtd/flutter_calendar_view/issues/380)

# [1.2.0 - 10 May 2024](https://github.com/SimformSolutionsPvtLtd/flutter_calendar_view/tree/1.2.0)

Expand Down
2 changes: 1 addition & 1 deletion lib/src/day_view/_internal_day_view_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ class InternalDayViewPage<T extends Object?> extends StatefulWidget {
}) : super(key: key);

@override
_InternalDayViewPageState<T> createState() => _InternalDayViewPageState();
_InternalDayViewPageState<T> createState() => _InternalDayViewPageState<T>();
}

class _InternalDayViewPageState<T extends Object?>
Expand Down
3 changes: 2 additions & 1 deletion lib/src/week_view/_internal_week_view_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,8 @@ class InternalWeekViewPage<T extends Object?> extends StatefulWidget {
}) : super(key: key);

@override
_InternalWeekViewPageState<T> createState() => _InternalWeekViewPageState();
_InternalWeekViewPageState<T> createState() =>
_InternalWeekViewPageState<T>();
}

class _InternalWeekViewPageState<T extends Object?>
Expand Down

0 comments on commit 22b8282

Please sign in to comment.