title property
Widget?
get
title
Implementation
Widget? get title {
if (_titleWidget != null) return _titleWidget;
if (titleText != null) {
return Row(
children: [
if (titleIcon != null) ...[
titleIcon!,
const SizedBox(width: 8),
],
Expanded(
child: Text(
titleText!,
textAlign: TextAlign.left,
style: DigitTheme.instance.mobileTheme.textTheme.headlineMedium,
),
),
],
);
}
return null;
}