buildFocusView method

Widget buildFocusView(
  1. bool isSelect
)

Implementation

Widget buildFocusView(bool isSelect) {
  return Row(
    children: [
      Container(
          width: 63,
          color: isSelect ? UIColors.color_337eff : UIColors.colorEBEDF0),
      SizedBox(width: 2),
      Expanded(
        child: Column(
          children: List.generate(
            5,
            (index) => index.isEven
                ? Expanded(
                    child: Container(
                      color: isSelect
                          ? UIColors.color_337eff
                          : UIColors.colorEBEDF0,
                    ),
                  )
                : SizedBox(
                    height: 2,
                  ),
          ),
        ),
      ),
    ],
  );
}