verticalListItem method

Widget verticalListItem(
  1. String text
)

Implementation

Widget verticalListItem(String text){
  return Container(
    padding: EdgeInsets.fromLTRB(14, 10, 14, 0),
    child:Column(
      children: [
      Row(
      children: [
        Text(text,
        style: TextStyle(
          fontWeight: FontWeight.w400,
          fontSize: 13,
          color: ColorHelper.black02
        ),
        ),
        Spacer(),
        RotatedBox(quarterTurns: 2,
        child: Icon(Icons.arrow_back_ios,size: 14, color: ColorHelper.black02,),
        )
      ],
    ),
        Container(
          height: 0.1,                   // Thickness
          color: ColorHelper.black02,         // Line color
          margin: EdgeInsets.symmetric(vertical: 10),  // Optional spacing
        )
      ],
    ));
}