bar_calendar 0.0.4 copy "bar_calendar: ^0.0.4" to clipboard
bar_calendar: ^0.0.4 copied to clipboard

outdated

A package that allows the creation of project calendars.

This package allows the creation of event-based project calendars.

Installing: #

In your pubspec.yaml

dependencies:
  bar_calendar: ^0.0.3
import 'package:bar_calendar/bar_calendar.dart';

Basic Usage: #

    BarCalendar(
        backgroundColor: Colors.grey.withOpacity(.4),
        events: [
          CalendarEvent(
              title: 'First Event',
              color: Colors.white,
              start: DateTime.now(),
              end: DateTime.now().add(const Duration(days: 8))),
          CalendarEvent(
              title: 'Second Event',
              color: Colors.white,
              start: DateTime.now(),
              end: DateTime.now().add(const Duration(days: 8)))
        ],
      )
16
likes
0
points
18
downloads

Publisher

unverified uploader

Weekly Downloads

A package that allows the creation of project calendars.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, intl

More

Packages that depend on bar_calendar