build method

  1. @override
dynamic build(
  1. dynamic context
)

Implementation

@override
Widget build(BuildContext context) {
  return SinglePage(
    footer: widget.footer,
    appAttributes: widget.appAttributes,
    showMediumSizeLayout: widget.appAttributes.showMediumSizeLayout,
    showLargeSizeLayout: widget.appAttributes.showLargeSizeLayout,
    children: [
      MarkdownFilePage(
        currentLocale: Localizations.localeOf(context),
        filePathDe: widget.filePathDe,
        filePathEn: widget.filePathEn,
        useLightMode: widget.appAttributes.useLightMode,
      )
    ],
  );
}