rectangle property

Widget get rectangle

Implementation

Widget get rectangle {
  return AnimatedContainer(
    duration: attribute.animationDuration,
    margin: EdgeInsets.symmetric(horizontal: margin),
    height: attribute.size,
    width: attribute.size * 2.5,
    decoration: BoxDecoration(
      color: backgroundColor,
      border: Border.all(
          color: unselectedBackgroundColor, width: attribute.borderSize),
    ),
  );
}