header function
Implementation
Widget header(BuildContext context, String headline,
{Color? color = Colors.black}) {
return Container(
width: double.infinity,
color: Colors.black12,
child: padding10(Text(
headline,
style: TextStyle(fontSize: 18, color: color),
)));
}