animated_horizontal_calendar 0.0.3 copy "animated_horizontal_calendar: ^0.0.3" to clipboard
animated_horizontal_calendar: ^0.0.3 copied to clipboard

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

animated_horizontal_calendar #

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

Features #

  • Select custom date with Date picker
  • CustomShape and style for Selected and unSelected Item.
  • Swipe behavior
  • Animated behavior

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

App Demo #

Edited_20210517_233106 Horizontal_Calender Edited_20210517_233106

Example #

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

    Container(
        height: 100,
        child: AnimatedHorizontalCalendar(
        tableCalenderIcon: Icon(Icons.calendar_today, color: Colors.white,),
        date: DateTime.now(),
        textColor: Colors.black45,
        backgroundColor: Colors.white,
        tableCalenderThemeData:  ThemeData.light().copyWith(
            primaryColor: Colors.green,
            accentColor: Colors.red,
            colorScheme: ColorScheme.light(primary: Colors.green),
            buttonTheme: ButtonThemeData(textTheme: ButtonTextTheme.primary),
        ),
        selectedColor: Colors.redAccent,
        onDateSelected: (date){
        selectedDate = date;
        } 
      ),
    ),
37
likes
70
pub points
77%
popularity

Publisher

unverified uploader

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

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, intl

More

Packages that depend on animated_horizontal_calendar