My question is similar to this, but for flutter web: boostrap relative footer goes up when zoom out window
So when I zoom out or the content is so small that you can't scroll at all, then the footer always goes up with. This then leaves unsightly white space under the footer. Is there a solution to get around this? My goal is to have the white space between the content of the page and the footer as soon as you zoom out or similar.
My structure is the following:
return Scaffold(
body: ListView(
children : [
Column(
crossAxisAlignment: CrossAxisAlignment.center,
children: [
// here is the content of the site
const Footer()
],
),
],
),
);
The footer is just a container with some content.