clean_nepali_calendar

Creator: coderz1093

Last updated:

0 purchases

clean_nepali_calendar Image
clean_nepali_calendar Images

Languages

Categories

Add to Cart

Description:

clean nepali calendar

Clean Nepali Calendar #
Flutter package to display Nepali Calendar. Inspired greatly from nepali_date_picker and table_calendar.

Highly customizable, feature-packed Flutter Nepali Calendar package.









Features #

Extensive, yet easy to use API
View in Unicode Nepali or Roman literals
Gesture handling
Specifying available date range
Highly customizable

Usage #
Make sure to check out example project.
For additional info please refer to API docs.
Installation #
Add to pubspec.yaml:
dependencies:
clean_nepali_calendar: latest
copied to clipboard
Then import it to your project:
import 'package:clean_nepali_calendar/clean_nepali_calendar.dart';
copied to clipboard
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());
},
);
}
copied to clipboard
Check out example project more detailed information.

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.