grid_schedule_calender

Last updated:

0 purchases

grid_schedule_calender Image
grid_schedule_calender Images
Add to Cart

Description:

grid schedule calender

TODO: Flutter Grid Schedule Calender.
Features #
TODO: You can create Schedule Based Grid Calender Instantly
Getting started #
TODO: pub add gridschedule
Usage #
Widget build(BuildContext context) {
GridDetail gridDetail = GridDetail(
lable: "Grid",
costPerGrid: 10,
arrowButtonColor: Color.fromARGB(255, 183, 200, 255).withOpacity(0.3),
gridCount: 3);
List<Schedule> schedule = [
Schedule(
day: 0,
time: "1.00-2.00",
availability: 1,
timeAvailableColor: Colors.pink,
timeUnavailableColor: Colors.lightGreen,
timeAvailableTextColor: Colors.black,
timeUnavailableTextColor: Colors.black,
onTapTimeAvailable: (p0) {
var tm = p0 as Schedule;
print(tm.time);
},
onTapTimeUnavailable: (args) {
// args as Sched
}),
Schedule(
day: 0,
time: "2.00-3.00",
availability: 1,
timeAvailableColor: Colors.pink,
timeUnavailableColor: Colors.lightGreen,
timeAvailableTextColor: Colors.white,
timeUnavailableTextColor: Colors.black,
onTapTimeAvailable: (p0) {
var tm = p0 as Schedule;
print(tm.time);
},
onTapTimeUnavailable: (args) {
print(args);
}),
];

return SafeArea(
child: Scaffold(
body: GridScheduleWidget(
title: "Grid Schedule",
schedule: schedule,
gridDetail: gridDetail)),
);
copied to clipboard
}
const like = 'sample';
copied to clipboard
Additional information #
You can raised issues in this repo https://github.com/praneethpj/GridSchduleCalender/issues

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.