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