buildItem method
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)
],
);