All Projects → iamvivekkaushik → Datepickertimelineflutter

iamvivekkaushik / Datepickertimelineflutter

Licence: apache-2.0
Flutter Date Picker Library that provides a calendar as a horizontal timeline

Programming Languages

dart
5743 projects
dartlang
94 projects

Projects that are alternatives of or similar to Datepickertimelineflutter

Datepickertimeline
Android Date Picker Library that provides a calendar as a horizontal timeline
Stars: ✭ 97 (-13.39%)
Mutual labels:  datepicker
Datepicker
A Date Picker with Calendar for iPhone and iPad Apps.
Stars: ✭ 103 (-8.04%)
Mutual labels:  datepicker
Rando Php
RandoPhp is a open source library that implements random generators (Integer, Char, Byte, Sequences, Boolean) and take random sample from arrays
Stars: ✭ 107 (-4.46%)
Mutual labels:  package
Momentum
MVC pattern for flutter. Works as state management, dependency injection and service locator.
Stars: ✭ 99 (-11.61%)
Mutual labels:  package
Pd Select
vue components ,like ios 3D picker style,vue 3d 选择器组件,3D滚轮
Stars: ✭ 101 (-9.82%)
Mutual labels:  datepicker
Turtlebot3 simulations
Simulations for TurtleBot3
Stars: ✭ 104 (-7.14%)
Mutual labels:  package
Formeditor
A form builder editor for Umbraco 7 - let your editors build forms easily with this free package.
Stars: ✭ 95 (-15.18%)
Mutual labels:  package
Pg Calendar
📆 beautiful and eidetic date picker
Stars: ✭ 109 (-2.68%)
Mutual labels:  datepicker
Npm Try
🚆 Quickly try npm packages without writing boilerplate code.
Stars: ✭ 103 (-8.04%)
Mutual labels:  package
Contracts
A set of reusable smart-contracts
Stars: ✭ 101 (-9.82%)
Mutual labels:  package
Ember Flatpickr
An Ember addon that wraps the Flatpickr date picker
Stars: ✭ 99 (-11.61%)
Mutual labels:  datepicker
React Input Enhancements
Set of enhancements for input control
Stars: ✭ 1,375 (+1127.68%)
Mutual labels:  datepicker
Snakecase
🐍🐍🐍 A systematic approach to parse strings and automate the conversion to snake_case, UpperCamelCase or any other case.
Stars: ✭ 104 (-7.14%)
Mutual labels:  package
Laravel Google Translate
This package makes using the Google Translate API in your laravel app a breeze with minimum to no configuration, clean syntax and a consistent package API.
Stars: ✭ 97 (-13.39%)
Mutual labels:  package
Logger json
JSON console backend for Elixir Logger.
Stars: ✭ 108 (-3.57%)
Mutual labels:  package
Nova Map Marker Field
Provides an visual interface for editing latitude and longitude coordinates.
Stars: ✭ 96 (-14.29%)
Mutual labels:  package
Laravel Factory Prefill
Prefills factories with faker method suggestions to increase productivity
Stars: ✭ 104 (-7.14%)
Mutual labels:  package
Mtcnn
MTCNN face detection implementation for TensorFlow, as a PIP package.
Stars: ✭ 1,689 (+1408.04%)
Mutual labels:  package
Docusign Node Client
The Official DocuSign Node.js Client Library used to interact with the eSign REST API. Send, sign, and approve documents using this client.
Stars: ✭ 108 (-3.57%)
Mutual labels:  package
Incrementselection
Add a number to each selection in Sublime Text, incremented once per selection
Stars: ✭ 105 (-6.25%)
Mutual labels:  package

DatePickerTimeline

Pub

Flutter Date Picker Library that provides a calendar as a horizontal timeline.

How To Use

Import the following package in your dart file

import 'package:date_picker_timeline/date_picker_timeline.dart';

Usage

This version is breaking backwards compatibility

Use the DatePicker Widget

Column(
    mainAxisAlignment: MainAxisAlignment.center,
    children: <Widget>[
      DatePicker(
        DateTime.now(),
        initialSelectedDate: DateTime.now(),
        selectionColor: Colors.black,
        selectedTextColor: Colors.white,
        onDateChange: (date) {
          // New date selected
          setState(() {
            _selectedValue = date;
          });
        },
      ),
    ],
)
Constructor:
DatePicker(
    this.startDate, {
    Key key,
    this.width,
    this.height,
    this.controller,
    this.monthTextStyle,
    this.dayTextStyle,
    this.dateTextStyle,
    this.selectedTextColor,
    this.selectionColor,
    this.deactivatedColor,
    this.initialSelectedDate,
    this.activeDates,
    this.inactiveDates,
    this.daysCount,
    this.onDateChange,
    this.locale = "en_US",
}) : super(key: key);

Author

Contributors

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].