buildNavTitleBar method
Optional app bar to display at the top of the layout
Implementation
@nonVirtual
@override
NavTitleBar? buildNavTitleBar(BuildContext context) {
final toolbar = AppTitleToolBar.buildToolBar(
context,
);
final titleBarLeading = buildTitleBarLeading(context);
final titleBarActions = buildTitleBarActions(context);
return NavTitleBar(
leading: titleBarLeading,
actions: titleBarActions,
leftToolBar: _titleBarToolsLeft ? toolbar : null,
leftIndent: _titleBarToolsLeft ? _titleBarToolsIndent ?? 40.0 : 40.0,
rightToolBar: _titleBarToolsLeft ? null : toolbar,
rightIndent: _titleBarToolsLeft ? 0.0 : _titleBarToolsIndent ?? 0.0,
);
}