Skip to content

Commit

Permalink
🐛 Fixes formatting issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
ParthBaraiya committed Sep 18, 2024
1 parent 2ac9e3c commit 72d8c57
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
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
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<T>();
_InternalWeekViewPageState<T> createState() =>
_InternalWeekViewPageState<T>();
}

class _InternalWeekViewPageState<T extends Object?>
Expand Down

0 comments on commit 72d8c57

Please sign in to comment.