getListRow method

Widget getListRow(
  1. String name,
  2. String value
)

Implementation

Widget getListRow(String name, String value) {
  return Row(
    crossAxisAlignment: CrossAxisAlignment.start,
    children: [
      SelectableText(
        name,
        style: const TextStyle(fontWeight: FontWeight.bold),
      ),
      const Padding(
        padding: EdgeInsets.only(left: 5),
      ),
      Flexible(
        child: SelectableText(
          value,
        ),
      ),
      const Padding(
        padding: EdgeInsets.only(bottom: 18),
      ),
    ],
  );
}