dev_calendar 0.0.1 dev_calendar: ^0.0.1 copied to clipboard
Dynamic calendar views.
Dev Calendar #
Example #
Calendar(
weekendOpacityEnable: true,
previous: Container(
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(500),
boxShadow: [
BoxShadow(
color: Colors.grey[300],
spreadRadius: 1.5,
blurRadius: 5,
offset: Offset(2.0, 0.0))
]),
child: CircleAvatar(
radius: 14,
backgroundColor: Colors.white,
child: Icon(
Icons.arrow_back_ios,
size: 16,
color: Colors.orange,
),
),
),
next: Container(
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(500),
boxShadow: [
BoxShadow(
color: Colors.grey[300],
spreadRadius: 1.5,
blurRadius: 5,
offset: Offset(2.0, 0.0))
]),
child: CircleAvatar(
radius: 14,
backgroundColor: Colors.white,
child: Icon(
Icons.arrow_forward_ios,
size: 16,
color: Colors.orange,
),
),
),
space: 20,
onSelected: print,
backgroundColor: Colors.white,
activeColor: Colors.orange,
textStyleDays: TextStyle(
fontWeight: FontWeight.normal, color: Colors.black),
textStyleWeekDay:
TextStyle(fontWeight: FontWeight.bold, color: Colors.black),
titleStyle:
TextStyle(fontWeight: FontWeight.bold, fontSize: 20),
selectedStyle:
TextStyle(fontWeight: FontWeight.bold, color: Colors.white),
),