buildParagraph function

Widget buildParagraph(
  1. String text
)

Helper UI Component for repeated text blocks

Implementation

Widget buildParagraph(String text) {
  return Padding(
    padding: const EdgeInsets.only(bottom: 18),
    child: Text(text, style: TextStyle(fontSize: 15, height: 1.4)),
  );
}