buildAppBar method
HareAppBar?
buildAppBar(
- BuildContext context, {
- Widget? leading,
- double? leadingWidth,
- double? titleSpacing,
- Widget? title,
- List<
Widget> ? actions, - bool? centerTitle,
- PreferredSizeWidget? bottom,
Implementation
HareAppBar? buildAppBar(
BuildContext context, {
Widget? leading,
double? leadingWidth,
double? titleSpacing,
Widget? title,
List<Widget>? actions,
bool? centerTitle,
PreferredSizeWidget? bottom,
}) {
return HareAppBar(leading: leading, leadingWidth: leadingWidth, titleSpacing: titleSpacing, title: title, actions: actions, centerTitle: centerTitle, bottom: bottom);
}