build method
dynamic
build( - dynamic context
)
Implementation
@override
Widget build(BuildContext context) {
var aboutMePagesLeftRight = _createAboutMeChildPages(
widget.appAttributes.userSettings,
widget.appAttributes.colorSelected,
context,
);
return OneTwoTransitionPage(
childWidgetsLeftPage: aboutMePagesLeftRight[0],
childWidgetsRightPage: aboutMePagesLeftRight[1],
appAttributes: widget.appAttributes,
footer: widget.footer,
showMediumSizeLayout: widget.appAttributes.showMediumSizeLayout,
showLargeSizeLayout: widget.appAttributes.showLargeSizeLayout,
railAnimation: widget.appAttributes.railAnimation,
);
}