buildMaterialWidget method

  1. @override
SliverAppBar buildMaterialWidget(
  1. BuildContext context
)
override

Implementation

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