Skip to content

Commit

Permalink
Updated README.md and CHANGELOG.md file
Browse files Browse the repository at this point in the history
  • Loading branch information
faiyaz-shaikh committed Jan 9, 2023
1 parent 580fe9d commit e501955
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand All @@ -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),
Expand Down
2 changes: 1 addition & 1 deletion lib/src/day_view/day_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ class DayView<T extends Object?> extends StatefulWidget {
final SafeAreaOption safeAreaOption;

/// Display full day event builder.
final FullDayEventBuilder? fullDayEventBuilder;
final FullDayEventBuilder<T>? fullDayEventBuilder;

/// Main widget for day view.
const DayView({
Expand Down
2 changes: 1 addition & 1 deletion lib/src/week_view/week_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ class WeekView<T extends Object?> extends StatefulWidget {
final SafeAreaOption safeAreaOption;

/// Display full day event builder.
final FullDayEventBuilder? fullDayEventBuilder;
final FullDayEventBuilder<T>? fullDayEventBuilder;

/// Main widget for week view.
const WeekView({
Expand Down

0 comments on commit e501955

Please sign in to comment.