simple_timetable 0.0.7 copy "simple_timetable: ^0.0.7" to clipboard
simple_timetable: ^0.0.7 copied to clipboard

outdated

Simple timetable

simple_timetable #

Simple timetable.

Getting Started #

screenshot2

Event model
class Event<T> {
  final DateTime start;
  final DateTime end;
  final DateTime date;
  final T payload;

  Event({
    this.start,
    this.end,
    this.date,
    this.payload,
  });
}
Usage
Widget build(BuildContext context) {
  return Scaffold(
    body: SimpleTimetable(
      onChange: (DateTime date, TimetableDirection dir) {
        print('On change date: $date');
        print('On change direction: $dir');
      },
      initialDate: DateTime.now(),
      dayStart: 8,
      dayEnd: 24,
      events: _events,
      buildCard: (Event event, bool isPast) {
        return GestureDetector(
          onTap: () {},
          child: Container(
            decoration: BoxDecoration(
              borderRadius: BorderRadius.circular(4),
              color: Colors.blue.withOpacity(0.3),
            ),
            child: Column(
              children: [
                Text(
                  '$isPast',
                  maxLines: 1,
                ),
              ],
            ),
          ),
        );
      },
    ),
  );
}