getTitleLight function

Widget getTitleLight(
  1. String title
)

Implementation

Widget getTitleLight(String title){
  return  Text(
    title,
    textAlign: TextAlign.center,
    style: TextStyle(color: black, fontSize: subTitle, fontWeight: FontWeight.w500, decoration: TextDecoration.none),
  );
}