time_slot_picker 0.0.1 copy "time_slot_picker: ^0.0.1" to clipboard
time_slot_picker: ^0.0.1 copied to clipboard

Time Slot Picker Plugin

time_slot_picker #

A library for picking time slot from horizontal strip.

Getting Started #

1.0 Add this to your package's pubspec.yaml file:

dependencies:
  time_slot_picker: ^0.0.1

2.1 Install it with pub:

$ pub get

OR

2.2 Install it with Flutter:

$ flutter packages get

3.0 Import it in your dart code:

import 'package:time_slot_picker/time_slot_picker.dart';

4.0 Add Widget

new Container(
    child: new Column(
        mainAxisAlignment: MainAxisAlignment.start,
        children: <Widget>[
            new Container(
                color: Colors.teal,
                child: new TimeSlotPicker(
                    date: new DateTime.now().subtract(Duration(days: 5)), // (Optional)
                    slotBorder: RoundedRectangleBorder(borderRadius: BorderRadius.circular(30.0)), // (Optional)
                    textStyle: TextStyle(color: Colors.white), // (Optional)
                    onTap: (DateTime startTime, DateTime endTime){ // (Required)
                        print(startTime.toString() +" >> "+endTime.toString());
                    },
                ),
            ),
        ],
    ),
),

date - (Optional) Add date if you need to get time with preset date. slotBorder - (Optional) Add slotBorder if you need to change border of time slot button. Default 'circular'. textStyle - (Optional) Add textStyle to change text appearance. onTap - (Required) You must add this event to get StartTime and EndTime of slot.

Output #

0
likes
30
pub points
24%
popularity

Publisher

unverified uploader

Time Slot Picker Plugin

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on time_slot_picker