grid_schedule_calender 0.0.6 grid_schedule_calender: ^0.0.6 copied to clipboard
You can make a 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)),
);
}
const like = 'sample';
Additional information #
You can raised issues in this repo https://github.com/praneethpj/GridSchduleCalender/issues