heading1 function

Widget heading1(
  1. dynamic title
)

Implementation

Widget heading1(title) {
  return text(
    title,
    size: 15.sp,
    weight: FontWeight.bold,
  );
}