This is one of the PageViewModel
PageViewModel(
title: '',
bodyWidget:
MyPageViewModel(
texto: 'This a text to show in the screen',
imagePath: 'assets/img/cards/flag.png'
),
footer: Wrap(
direction: Axis.horizontal,
alignment: WrapAlignment.center,
runAlignment: WrapAlignment.center,
crossAxisAlignment: WrapCrossAlignment.center,
children:[ ButtonWidget(
text: '¡Comienza ahora',
onClicked: () => goToHome(context),
)],
),
decoration: getPageDecoration(),
)
When I add a footer to the PageViewModel, the bodywidget is hidden.
