event_booking_timeline 0.0.6 copy "event_booking_timeline: ^0.0.6" to clipboard
event_booking_timeline: ^0.0.6 copied to clipboard

To display the events booked in a specific time of the day. The events which are booked or reserved are displayed in forms of colors.

Event Booking Timeline #

pub package

Event booking timeline is a widget used to display the events booked in a specific time of the day.

Features #

  • Timeline color changes according to booking status.
  • Time format displayed in both 24 and 12 hour formats.
  • Callback when the time is changed.
  • Inbuilt class for data.
  • Getting started #

    Install #

    dependencies:
        event_booking_timeline: ^0.0.5
    

    Usage #

    Simple Timeline with booking #

        EventBookingTimeline(
            booked: [
                Booking(startTime: "00:00", endTime: "01:00"),
                Booking(startTime: "01:00", endTime: "02:00"),
                Booking(startTime: "08:00", endTime: "09:00"),
            ],
            startTime: "00:00",
            endTime: "24:00",
            is12HourFormat: true,
            moveToFirstAvailableTime: false,
            numberOfSubdivision: 5,
            widthOfSegment: 100,
            widthOfTimeDivisionBar: 3,
            availableColor: Colors.grey,
            bookedColor: Colors.blue,
            onTimeSelected: (String time) {
                print("Selected Time $time");
            },
        );
    

    Demo #

    Demo
    7
    likes
    0
    pub points
    56%
    popularity

    Publisher

    unverified uploader

    To display the events booked in a specific time of the day. The events which are booked or reserved are displayed in forms of colors.

    Repository (GitHub)
    View/report issues

    License

    unknown (LICENSE)

    Dependencies

    flutter

    More

    Packages that depend on event_booking_timeline