buildNormalRow method

List<Widget> buildNormalRow()

Implementation

List<Widget> buildNormalRow() {
  final List<Widget> children = [];
  for (int i = 0; i < widget.count; i++) {
    children.add(
      getStarItemView(
        widget.normalImage,
        widget.normalColor,
      ),
    );
    if (i < widget.count - 1) {
      children.add(
        SizedBox(
          width: widget.padding,
        ),
      );
    }
  }
  return children;
}