buildShell method
Wraps body in the shared auth step shell.
Implementation
Widget buildShell({
Widget? body,
List<Widget>? children,
Widget Function(BuildContext, WidgetRef)? customFooter,
}) {
return _AuthStepShell(
stepId: stepId,
layout: layout.copyWith(
title: title,
subtitle: subtitle,
),
appBar: buildAppBar,
footer: customFooter?.call(context, ref) ?? buildFooter,
trailingContent: buildTrailingContent,
body: body,
children: children,
);
}