planner 0.1.0 copy "planner: ^0.1.0" to clipboard
planner: ^0.1.0 copied to clipboard

A calendar event schedule interface. Displays events in an editable grid with day and hour labels.

Planner #

A calendar event scheduler interface. The widget is preferably used (almost) fullscreen. It displays events in a table.

screenshot

Features #

  • Scrollable hours handle.
  • Scrollable days handle.
  • Zoomable event schedule.
  • Events can be moved after a long press.
  • Event start and ending can be changed by moving the handles (also with long press).
  • Callbacks are provided for tapping on an event and on the planner.
  • Also has a callback for when an events has been moved.

Getting Started #

Add the package to pubspec.yaml:

planner: ^0.0.1

Import planner:

import 'package:planner/planner.dart';

Events #

Planner expects a list with events of type PlannerEntry. The events are not based on DateTime to provide maximum flexibility. A PlannerEntry constructor accepts these arguments:

  • day (int) required
  • hour (int) required
  • minutes (int) defaults to 0
  • duration (int) in minutes, defaults to 60
  • title (String)
  • content (String)
  • color: (Color) required, this is the background color
var entries = List<PlannerEntry>();
entries.add(PlannerEntry(
    day: 0,
    hour: 12,
    minutes: 15,
    duration: 120, // in minutes
    title: 'entry 1',
    content: 'some content to show in this entry',
    color: Colors.blue
));

Planner #

The planner can be added as a child object. It needs a few arguments:

  • labels: (List<String>) required The day labels. This also determines how many dates are shown.
  • minHour: (int) required the earliest hour to show. Events earlier than this are not shown.
  • maxHour: (int) required the latest hour to show.
  • entries: (List<PlannerEntry>) required
  • blockHeight: (int) defaults to 40 the height of a date field, if no zooming is active
  • blockWidth: (int) defaults to 200 the width of a date field, if no zooming is active
  • onEntryChanged: Function(PlannerEntry) The callback called when an entry was changed. (Moved, start or duration has changed by dragging the event.)
  • onEntryDoubleTap: Function(PlannerEntry) The callback called when a double tap on the event happened.
  • onPlannerDoubleTap: Function(int day, int hour, int minute) The callback called when a double tap in the planner happened, without an event underneath.
Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('Planner Demo'),
      ),
      body: Planner(
        labels: ['day 1', 'day 2', 'day 3', 'day 4', 'day 5'],
        minHour: 8,
        maxHour: 20,
        entries: entries,
        onEntryDoubleTap: onEntryDoubleTap,
        onPlannerDoubleTap: onPlannerDoubleTap,
        onEntryChanged: onEntryChanged,
      ),
    );
  }
14
likes
30
pub points
0%
popularity

Publisher

unverified uploader

A calendar event schedule interface. Displays events in an editable grid with day and hour labels.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

after_layout, flutter, positioned_tap_detector, vibration

More

Packages that depend on planner