buildItem method

Widget buildItem(
  1. String styleInfo,
  2. TextStyle style
)

Implementation

Widget buildItem(String styleInfo, TextStyle style) => Column(
      children: <Widget>[
        Padding(
          padding: const EdgeInsets.all(8.0),
          child: Row(
            mainAxisAlignment: MainAxisAlignment.spaceBetween,
            children: <Widget>[
              Text(styleInfo, style: textStyle),
              Text("@toly", style: style)
            ],
          ),
        ),
        const Divider(height: 1)
      ],
    );