titleToWidget method
Implementation
Widget titleToWidget(BuildContext context) {
if (title != null) {
return Text(
title!,
overflow: TextOverflow.fade,
textAlign: TextAlign.center,
style: Theme.of(context).textTheme.titleLarge?.copyWith(
color: Colors.white,
),
);
}
return const SizedBox(
height: 1,
);
}