diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ca24105..5472b270 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +# [1.0.2 - 09 Jan 2023](https://github.com/SimformSolutionsPvtLtd/flutter_calendar_view/tree/1.0.2) +- Added + Feature [#144 - WeekView not support show current week number](https://github.com/SimformSolutionsPvtLtd/flutter_calendar_view/issues/144) +- Added + Feature [#149 - Full day events support](https://github.com/SimformSolutionsPvtLtd/flutter_calendar_view/issues/149) +- Fixed + Issue [#142 - week day not align center](https://github.com/SimformSolutionsPvtLtd/flutter_calendar_view/issues/142) +- Fixed + Issue [#146 - WeekView wrapped by SafeArea](https://github.com/SimformSolutionsPvtLtd/flutter_calendar_view/issues/146) + # [1.0.1 - 25 Nov 2022](https://github.com/SimformSolutionsPvtLtd/flutter_calendar_view/tree/1.0.1) - Added Feature [#26 - Support for locale](https://github.com/SimformSolutionsPvtLtd/flutter_calendar_view/issues/26) diff --git a/README.md b/README.md index 83544f90..8270a687 100644 --- a/README.md +++ b/README.md @@ -157,6 +157,10 @@ DayView( // Return your widget to display as event tile. return Container(); }, + fullDayEventBuilder: (events, date) { + // Return your widget to display full day event view. + return Container(); + }, showVerticalLine: true, // To display live time line in day view. showLiveTimeLineInAllDays: true, // To display live time line in all pages in day view. minDay: DateTime(1990), @@ -178,6 +182,10 @@ WeekView( // Return your widget to display as event tile. return Container(); }, + fullDayEventBuilder: (events, date) { + // Return your widget to display full day event view. + return Container(); + }, showLiveTimeLineInAllDays: true, // To display live time line in all pages in week view. width: 400, // width of week view. minDay: DateTime(1990), diff --git a/lib/src/day_view/day_view.dart b/lib/src/day_view/day_view.dart index e376461b..d78afb44 100644 --- a/lib/src/day_view/day_view.dart +++ b/lib/src/day_view/day_view.dart @@ -163,7 +163,7 @@ class DayView extends StatefulWidget { final SafeAreaOption safeAreaOption; /// Display full day event builder. - final FullDayEventBuilder? fullDayEventBuilder; + final FullDayEventBuilder? fullDayEventBuilder; /// Main widget for day view. const DayView({ diff --git a/lib/src/week_view/week_view.dart b/lib/src/week_view/week_view.dart index 8ce5e22c..8e54049c 100644 --- a/lib/src/week_view/week_view.dart +++ b/lib/src/week_view/week_view.dart @@ -175,7 +175,7 @@ class WeekView extends StatefulWidget { final SafeAreaOption safeAreaOption; /// Display full day event builder. - final FullDayEventBuilder? fullDayEventBuilder; + final FullDayEventBuilder? fullDayEventBuilder; /// Main widget for week view. const WeekView({