renderRowData method

Widget renderRowData(
  1. String title,
  2. String value
)

Implementation

Widget renderRowData(String title, String value) {
  return SelectableText.rich(
    TextSpan(
      children: [
        TextSpan(
          text: '$title: ',
          style: TextStyle(
            fontWeight: FontWeight.bold,
            fontSize: 14,
            color: Colors.black,
          ),
        ),
        TextSpan(
          text: value,
          style: TextStyle(
            fontSize: 14,
            color: Colors.black,
          ),
        ),
      ],
    ),
  );
}