build method
dynamic
build( - 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,
)
],
);
}