custom_horizontal_calendar 0.1.3 copy "custom_horizontal_calendar: ^0.1.3" to clipboard
custom_horizontal_calendar: ^0.1.3 copied to clipboard

A new flutter plugin project aims to implement horizontal Calender, you can add custon shape and styles for selected and unSelected dates.

Custom_Horizontal_calendar #

A new flutter plugin project aims to implement horizontal Calender.

Features #

  • Seperate Date picker Component.
  • CustomShape and style for Selected Item.
  • CustomShape and style for unSelected Item.
  • Swipe behavior,not list.

Getting Started #

This project is a starting point for a Flutter plug-in package, a specialized package that includes platform-specific implementation code for Android and/or iOS.

For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.

depandancy packeges #

  • intl
  • swipedetector

App Demo #

Example #

This plugin allow you to do custom styles and shapes for Selected and UnSelected dates

           CustomHorizontalCalendar(
                onDateChoosen: (date){setState(() {
                 chosen=date; 
                });},
                inintialDate: DateTime.now(),
                height: 60,
                builder: (context, i, d,width) {
                  if (i != 2)
                    return DateRow(d ,width: width,
                   );
                  else
                    return DateRow(
                      d,
                      background: Colors.blue,
                      selectedDayStyle: TextStyle(color: Colors.white),
                      selectedDayOfWeekStyle: TextStyle(color: Colors.white),
                      selectedMonthStyle: TextStyle(color: Colors.white),width: width,
                    );
                },
              )
10
likes
30
pub points
23%
popularity

Publisher

unverified uploader

A new flutter plugin project aims to implement horizontal Calender, you can add custon shape and styles for selected and unSelected dates.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, flutter_datetime_picker, intl, swipedetector

More

Packages that depend on custom_horizontal_calendar