titleToWidget method

Widget titleToWidget(
  1. BuildContext context
)

Implementation

Widget titleToWidget(BuildContext context) {
  if (text != null) {
    return Text(
      text!,
      style: Theme.of(context)
          .textTheme
          .bodyMedium
          ?.copyWith(color: Colors.white),
    );
  }
  return const SizedBox(
    height: 1,
  );
}