circleDrop property

Widget get circleDrop

Implementation

Widget get circleDrop {
  return AnimatedContainer(
    duration: attribute.animationDuration,
    margin: EdgeInsets.symmetric(horizontal: margin),
    padding: EdgeInsets.all(attribute.size / 3),
    decoration: BoxDecoration(
      color: Colors.transparent,
      shape: BoxShape.circle,
      border: Border.all(
        color: unselectedBackgroundColor,
        width: attribute.borderSize,
      ),
    ),
    child: CircleAvatar(radius: radius, backgroundColor: backgroundColor),
  );
}