v0.0.3animated_horizontal_calendar
날짜 선택기와 함께 애니메이션된 수평 캘린더 뷰를 표시하는 플러터 플러그인입니다.
jpmehedi/animated_horizontal_calendar open-source repository details.
^0.0.5{"sdk":"flutter"}^0.18.1{"sdk":"flutter"}아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.
A flutter plugin to show animated horizontal view of calendar with date picker.
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.
| Edited_20210517_233106 | Horizontal_Calender | Edited_20210517_233106 |
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;
}
),
),