buildParagraph function
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)),
);
}