Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Pickadate.js | 7,707 | 3 years ago | 285 | mit | JavaScript | |||||
The mobile-friendly, responsive, and lightweight jQuery date & time input picker. | ||||||||||
V Calendar | 3,770 | 99 | 137 | 4 days ago | 117 | February 06, 2022 | 637 | mit | HTML | |
An elegant calendar and datepicker plugin for Vue. | ||||||||||
Pdtsimplecalendar | 1,954 | 31 | 5 years ago | 8 | August 27, 2015 | 37 | apache-2.0 | Objective-C | ||
A simple Calendar / Date Picker for iOS using UICollectionView | ||||||||||
Mobiscroll | 1,511 | 2 | 1 | a year ago | 25 | May 17, 2021 | 31 | other | JavaScript | |
Cross platform UI controls for progressive web and hybrid apps (plain JS, jQuery, Angular and React) | ||||||||||
React Date Picker | 1,048 | 504 | 126 | 19 hours ago | 239 | February 04, 2022 | 27 | mit | JavaScript | |
A date picker for your React app. | ||||||||||
Material Calendar View | 882 | 7 months ago | 2 | November 27, 2018 | 20 | apache-2.0 | Kotlin | |||
Material Calendar View for Android | ||||||||||
Glcalendarview | 871 | 7 | 6 years ago | 7 | August 22, 2015 | 24 | mit | Objective-C | ||
A fully customizable calendar view acting as a date range picker | ||||||||||
Rsdayflow | 843 | 16 | 8 months ago | 33 | October 22, 2018 | mit | Objective-C | |||
iOS 7+ Calendar (Date Picker) with Infinite Scrolling. | ||||||||||
Moment Jalaali | 838 | 208 | 285 | 4 months ago | 38 | April 09, 2022 | 37 | mit | JavaScript | |
A Jalaali (Jalali, Persian, Khorshidi, Shamsi) calendar system plugin for moment.js. | ||||||||||
React Modern Calendar Datepicker | 820 | 1 | 7 | 8 months ago | 22 | July 03, 2020 | 139 | mit | JavaScript | |
A modern, beautiful, customizable date picker for React |
Material and Cupertino Styled Date Picker, Date Range Picker and Calendar with Bikram Sambat(Nepali) Support.
Nepali Date Picker returns data in NepaliDateTime type, which is included in nepali_utils package.
Use Version 5.0.0 for flutter < 2.1.0
import 'package:nepali_date_picker/nepali_date_picker.dart' as picker;
NepaliDateTime _selectedDateTime = await picker.showMaterialDatePicker(
context: context,
initialDate: NepaliDateTime.now(),
firstDate: NepaliDateTime(2000),
lastDate: NepaliDateTime(2090),
initialDatePickerMode: DatePickerMode.day,
);
print(_selectedDateTime); // 2076-02-16T00:00:00
picker.showCupertinoDatePicker(
context: context,
initialDate: NepaliDateTime.now(),
firstDate: NepaliDateTime(2000),
lastDate: NepaliDateTime(2090),
language: _language,
dateOrder: _dateOrder,
onDateChanged: (newDate) {
print(_selectedDateTime);
},
);
Shows DatePicker based on Platform. i.e. Cupertino DatePicker will be shown on iOS while Material on Android and Fuchsia.
NepaliDateTime _selectedDateTime = await picker.showAdaptiveDatePicker(
context: context,
initialDate: NepaliDateTime.now(),
firstDate: NepaliDateTime(2000),
lastDate: NepaliDateTime(2090),
language: _language,
dateOrder: _dateOrder, // for iOS only
initialDatePickerMode: DatePickerMode.day, // for platform except iOS
);
Shows Calendar, can be used for showing events.
CalendarDatePicker(
initialDate: NepaliDateTime.now(),
firstDate: NepaliDateTime(2070),
lastDate: NepaliDateTime(2090),
onDateChanged: (date) => _selectedDate.value = date,
dayBuilder: (dayToBuild) { // Optional
return Center(
child: Text(
'${dayToBuild.day}',
style: Theme.of(context).textTheme.caption,
),
),
},
selectedDayDecoration: BoxDecoration ( // Optional
color: Colors.deepOrange,
shape: BoxShape.circle,
),
todayDecoration: BoxDecoration ( // Optional
gradient: LinearGradient(colors: [Colors.yellow, Colors.orange]),
shape: BoxShape.circle,
),
};
Material Design (Portrait)
Material Design (Landscape)
Cupertino Design
Copyright 2020 Sarbagya Dhaubanjar. All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following
disclaimer in the documentation and/or other materials provided
with the distribution.
* Neither the name of Google Inc. nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.