renderVerticalLine method

Widget renderVerticalLine()

Implementation

Widget renderVerticalLine() {
  return SizedBox(
    height: 14,
    // width: 14,
    child: Center(
      heightFactor: 14,
      child: Container(
        // margin: iGapHorizontal,
        margin: const EdgeInsets.only(top: 2, left: iSizeXS, right: iSizeXS),
        height: 10,
        decoration: const BoxDecoration(
          // color: Colors.amber,
          border: Border(
            left: BorderSide(
              style: iLineSolid,
              color: iSplitColor,
              width: iLineWidth,
            ),
          ),
        ),
      ),
    ),
  );
}