buildContent method

Widget buildContent(
  1. BuildContext context
)

Implementation

Widget buildContent(BuildContext context) {
  final appInfoBloc = FastAppInfoBloc.instance;
  final appInfo = appInfoBloc.currentState;
  final appName = appInfo.appName;

  return Column(
    crossAxisAlignment: CrossAxisAlignment.stretch,
    children: [
      FastPageHeaderRoundedDuotoneIconLayout(icon: buildIcon(context)),
      kFastSizedBox32,
      if (appInfo.appTermsOfServiceLastModified != null)
        FastSettingsLastModified(
          lastModifiedAt: appInfo.appTermsOfServiceLastModified!,
        ),
      buildAppTermOfServiceParagraph(appName),
      if (appInfo.supportEmail != null)
        buildAcceptingTermsArticle(appName, appInfo.supportEmail!),
      buildChangesToTermsArticle(appName),
      buildGovernLawArticle(),
      buildThirdPartyServicesArticle(),
      buildIntellectualPropertyArticle(appName),
      ...?children,
    ],
  );
}