Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Table_calendar | 1,526 | 21 | 2 | 10 days ago | 48 | May 29, 2022 | 66 | apache-2.0 | Dart | |
Highly customizable, feature-packed calendar widget for Flutter | ||||||||||
Flutter_calendar_carousel | 754 | 23 | 1 | 7 days ago | 89 | July 12, 2022 | 3 | mit | Dart | |
Calendar widget for flutter that is swipeable horizontally. This widget can help you build your own calendar widget highly customizable. | ||||||||||
Flutter_custom_calendar | 384 | 3 years ago | 35 | bsd-2-clause | Dart | |||||
Flutter的一个日历控件 | ||||||||||
Flutter Timeline | 293 | a year ago | n,ull | mit | Dart | |||||
⌚️ A general flutter timeline widget based on real-world application references | ||||||||||
Flutter_calendar | 291 | 21 | 4 years ago | 9 | January 06, 2020 | 25 | bsd-2-clause | Dart | ||
A calendar widget for Flutter. | ||||||||||
Flutter_calendar_view | 285 | 16 hours ago | 5 | June 02, 2022 | 28 | mit | Dart | |||
A Flutter package allows you to easily implement all calendar UI and calendar event functionality. 👌🔝🎉 | ||||||||||
Timetable | 278 | 2 months ago | 24 | August 19, 2022 | 28 | apache-2.0 | Dart | |||
📅 Customizable flutter calendar widget including day and week views | ||||||||||
Flutterweekview | 196 | 15 days ago | 25 | May 19, 2022 | 10 | mit | Dart | |||
Displays a highly customizable week view (or day view) which is able to display events, to be scrolled, to be zoomed-in & out and a lot more ! | ||||||||||
Flutter_calendar_strip | 175 | 2 | a year ago | 8 | October 22, 2020 | 14 | bsd-3-clause | Dart | ||
A Flutter Calendar Strip Widget | ||||||||||
Flutter_calendar | 158 | 1 | a year ago | 15 | October 18, 2021 | 16 | bsd-2-clause | Dart | ||
Calendar widget for flutter |
Flutter package to display Nepali Calendar. Inspired greatly from nepali_date_picker and table_calendar.
Highly customizable, feature-packed Flutter Nepali Calendar package.
![]() |
![]() |
![]() |
---|
Make sure to check out example project. For additional info please refer to API docs.
Add to pubspec.yaml:
dependencies:
clean_nepali_calendar: latest
Then import it to your project:
import 'package:clean_nepali_calendar/clean_nepali_calendar.dart';
Then create and use the NepaliCalendarController
and instantiate the CleanNepaliCalendar
widget. works out of box;
@override
void initState() {
super.initState();
_calendarController = NepaliCalendarController();
}
@override
Widget build(BuildContext context) {
return CleanNepaliCalendar(
controller: _calendarController,
onDaySelected: (day){
print(day.toString());
},
);
}
Check out example project more detailed information.