calendar_day_view 3.0.0-dev.1 copy "calendar_day_view: ^3.0.0-dev.1" to clipboard
calendar_day_view: ^3.0.0-dev.1 copied to clipboard

This package is dedicated to calendar day view. This is a complement to calendar to make your app better

"Buy Me A Coffee"

[BREAKING CHANGES] in version 3. please prefer to Changelogs #

Calendar Day View - A fully customizable Calendar day view library #

This package is dedicated to calendar day view. While there are many calendar package out there. It seems that not many of them support Day view well. This package clearly is not a calendar replacement but rather a complement to make calendar in app better. This package aims to give user most customization they want.

Features #

  • Category Day View showing event on a day with multiple categories
  • Over flow day view: like normal calendar where event is displayed expanded on multiple time row to indicate its duration
  • In row day view: show all events that start in the same time gap in a row
  • Event day view: show all events in day
  • Option to change start of day and end of day in day view
  • Option to change time gap(duration that a single row represent) in day view.
  • Option to show current time on day view as a line
  • Allow user to tap on day view (ex: to create event at that specific time)

Installing and import the library: #

Like any other package, add the library to your pubspec.yaml dependencies:

dependencies:
    calendar_day_view: <latest_version>

Then import it wherever you want to use it:

import 'package:calendar_day_view/calendar_day_view.dart';

Usage #

look at example folder for all use cases

Category Day View #

  • For showing event on a day with multiple categories (ex: multiple meeting rooms, playground,...).

  • Category can be add on the fly.

    Category Day View
    CategoryCalendarDayView(
              categories: categories,
              events: events,
              onTileTap: addEventOnClick,
              startOfDay: const TimeOfDay(hour: 7, minute: 00),
              endOfDay: const TimeOfDay(hour: 17, minute: 00),
              timeGap: 60,
              heightPerMin: 1,
              evenRowColor: Colors.white,
              oddRowColor: Colors.grey,
              headerDecoration: BoxDecoration(
                color: Colors.lightBlueAccent.withOpacity(.5),
              ),
              eventBuilder: (constraints, category, event) => GestureDetector(
                onTap: () => print(event),
                child: Container(
                  constraints: constraints,
                  decoration: BoxDecoration(
                    color: Theme.of(context).colorScheme.primary,
                    border: Border.all(width: .5, color: Colors.black26),
                  ),
                  child:<<ItemWidget>>
                ),
              ),
            )
    

Overflow Day View #

  • For viewing event and duration as event will be shown on multiple time point rows depends on its own duration. For this to work all [DayEvent] must have non-null end time.
Overflow Day View
Overflow normal Overflow with ListView
Overflow Day View Overflow Day View
renderRowAsListView: false renderRowAsListView: true
OverFlowCalendarDayView(
            events: events,
            dividerColor: Colors.black,
            startOfDay: const TimeOfDay(hour: 00, minute: 0),
            endOfDay: const TimeOfDay(hour: 23, minute: 0),
            timeGap: 60,
            renderRowAsListView: true,
            showCurrentTimeLine: true,
            showMoreOnRowButton: true,
            overflowItemBuilder: (context, constraints, event) {
              return <<ItemWidget>>
            },
          )

Event Only Day View #

  • For Viewing events only and their start times
event only day view
 EventCalendarDayView(
      events: events,
      eventDayViewItemBuilder: (context, event) {
        return Container(
          color: getRandomColor(),
          height: 50,
          child: Text(event.value),
        );
      },
    );

In Row Day View #

  • For viewing events that start in a same time window (15min, 30mins,...)
In Row Day View
InRowCalendarDayView<String>(
            events: events,
            heightPerMin: 1,
            showCurrentTimeLine: true,
            dividerColor: Colors.black,
            timeGap: 15,
            showWithEventOnly: withEventOnly.value,
            startOfDay: const TimeOfDay(hour: 00, minute: 0),
            endOfDay: const TimeOfDay(hour: 22, minute: 0),
            itemBuilder: (context, constraints, event) => Flexible(
              child:<<ITEM WIDGET>>
            ),
          ),

Appreciate Your Feedbacks and Contributes #

If you find anything need to be improve or want to request a feature. Please go ahead and create an issue in the Github repo

26
likes
0
pub points
80%
popularity

Publisher

verified publishersamderlust.com

This package is dedicated to calendar day view. This is a complement to calendar to make your app better

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on calendar_day_view