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. | ||||||||||
React Datepicker | 7,217 | 3,397 | 1,502 | 12 hours ago | 150 | May 17, 2022 | 248 | mit | JavaScript | |
A simple and reusable datepicker component for React | ||||||||||
Tempus Dominus | 7,070 | 1,387 | 132 | 9 days ago | 11 | December 17, 2020 | 23 | mit | HTML | |
A powerful Date/time picker widget. | ||||||||||
Materialdatetimepicker | 4,604 | 1,084 | 3 | 2 years ago | 54 | August 30, 2019 | 102 | apache-2.0 | Java | |
Pick a date or time on Android in style | ||||||||||
Datetimepicker | 3,476 | 183 | 38 | a month ago | 25 | February 23, 2019 | 427 | mit | JavaScript | |
jQuery Plugin Date and Time Picker | ||||||||||
Tcomb Form Native | 3,162 | 499 | 18 | 7 months ago | 53 | October 11, 2018 | 128 | mit | JavaScript | |
Forms library for react-native | ||||||||||
React Native Modal Datetime Picker | 2,689 | 488 | 94 | 2 months ago | 90 | September 06, 2022 | 13 | mit | JavaScript | |
A React-Native datetime-picker for Android and iOS | ||||||||||
Brpickerview | 2,324 | 14 | 3 months ago | 49 | July 08, 2022 | 122 | mit | Objective-C | ||
BRPickerView 封装的是iOS中常用的选择器组件,主要包括:日期选择器(支持年月日、年月等15种日期样式选择,支持设置星期、至今等)、地址选择器(支持省市区、省市、省三种地区选择)、自定义字符串选择器(支持单列、多列、二级联动、三级联动选择)。支持自定义主题样式,适配深色模式,支持将选择器组件添加到指定容器视图。 | ||||||||||
Sublimepicker | 2,286 | 3 years ago | 64 | apache-2.0 | Java | |||||
A material-styled android view that provisions picking of a date, time & recurrence option, all from a single user-interface. | ||||||||||
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 |
A flutter plugin to show horizontal view of calendar with date picker
In the dependencies: section of your pubspec.yaml, add the following line:
horizontal_calendar:1.0.0
import 'package:horizontal_calendar/horizontal_calendar.dart';
class MyHomePage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: HorizontalCalendar(
date: DateTime.now(),
textColor: Colors.black45,
backgroundColor: Colors.white,
selectedColor: Colors.blue,
showMonth:true,
onDateSelected: (date) {
print(date.toString());
},
),
);
}
}
View the Flutter app in the example directory in the repository.