buildItem method

Widget buildItem(
  1. String label,
  2. TextStyle labelStyle,
  3. TextStyle style
)

Implementation

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