circleIcon property
Widget
get
circleIcon
Implementation
Widget get circleIcon {
return Container(
width: 24,
height: 24,
child: Icon(
Icons.event,
color: Colors.white,
),
decoration: BoxDecoration(
color: Colors.lightBlue,
borderRadius: BorderRadius.all(
Radius.circular(64),
),
boxShadow: [
BoxShadow(
color: Colors.lightBlueAccent,
blurRadius: 16,
offset: Offset(0, 4))
]),
);
}