buildMaterialWidget method
Implementation
@override
SliverAppBar buildMaterialWidget(BuildContext context) {
return SliverAppBar(
leading: _buildLeading(
context: context,
leading: leading,
leadingOnPressed: leadingOnPressed,
tintColor: tintColor,
),
title: title,
actions: actions ?? [],
elevation: elevation,
backgroundColor: backgroundColor,
pinned: pinned,
expandedHeight: expandedHeight,
flexibleSpace: flexibleSpace,
systemOverlayStyle:
systemOverlayStyle ?? AppBarTheme.of(context).systemOverlayStyle,
);
}