Horizontal_calendar

A flutter plugin to show horizontal view of calendar with date picker
Alternatives To Horizontal_calendar
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Pickadate.js7,707
3 years ago285mitJavaScript
The mobile-friendly, responsive, and lightweight jQuery date & time input picker.
React Datepicker7,2173,3971,50212 hours ago150May 17, 2022248mitJavaScript
A simple and reusable datepicker component for React
Tempus Dominus7,0701,3871329 days ago11December 17, 202023mitHTML
A powerful Date/time picker widget.
Materialdatetimepicker4,6041,08432 years ago54August 30, 2019102apache-2.0Java
Pick a date or time on Android in style
Datetimepicker3,47618338a month ago25February 23, 2019427mitJavaScript
jQuery Plugin Date and Time Picker
Tcomb Form Native3,162499187 months ago53October 11, 2018128mitJavaScript
Forms library for react-native
React Native Modal Datetime Picker2,689488942 months ago90September 06, 202213mitJavaScript
A React-Native datetime-picker for Android and iOS
Brpickerview2,324
143 months ago49July 08, 2022122mitObjective-C
BRPickerView 封装的是iOS中常用的选择器组件,主要包括:日期选择器(支持年月日、年月等15种日期样式选择,支持设置星期、至今等)、地址选择器(支持省市区、省市、省三种地区选择)、自定义字符串选择器(支持单列、多列、二级联动、三级联动选择)。支持自定义主题样式,适配深色模式,支持将选择器组件添加到指定容器视图。
Sublimepicker2,286
3 years ago64apache-2.0Java
A material-styled android view that provisions picking of a date, time & recurrence option, all from a single user-interface.
Pdtsimplecalendar1,954
315 years ago8August 27, 201537apache-2.0Objective-C
A simple Calendar / Date Picker for iOS using UICollectionView
Alternatives To Horizontal_calendar
Select To Compare


Alternative Project Comparisons
Readme

Horizontal Calendar

A flutter plugin to show horizontal view of calendar with date picker

calendar image

Installation

In the dependencies: section of your pubspec.yaml, add the following line:

horizontal_calendar:1.0.0

Usage

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());
        },
      ),
    );
  }
}

Example

View the Flutter app in the example directory in the repository.
Popular Picker Projects
Popular Date Projects
Popular User Interface Components Categories
Related Searches

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Plugin
Dart
Flutter
Date
Calendar
Picker
Datepicker