time_slot_picker

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

time slot picker

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
copied to clipboard
2.1 Install it with pub:
$ pub get
copied to clipboard
OR
2.2 Install it with Flutter:
$ flutter packages get
copied to clipboard
3.0 Import it in your dart code:
import 'package:time_slot_picker/time_slot_picker.dart';
copied to clipboard
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());
},
),
),
],
),
),
copied to clipboard
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 #

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.