Flutter Stack ListView over Footer

34 Views Asked by At

I want to create a website where the footer sticks to the bottom of the page but the items of a ListView which fills out the whole page overlap the footer until the user scrolls all the way up.

For example: The footer has a height of 350 and the last element of the listview is a container with a height of 350. The problem is that the items in the footer are not clickable if it is underneath the list of items. Is there a way to fix this?

Here is a sample of my setup so far:

...,
children: [
            Positioned(
              bottom: 0,
              left: 0,
              right: 0,
              child: FooterWidget(),      //Container of height 350 with some TextButtons, etc.
            ),
            ListView(..., Container(height: 350,),)

children: [
  Positioned(
    bottom: 0,
    left: 0,
    right: 0,
    child: FooterWidget(), // Container of height 350 with some TextButtons, etc.
  ),
  ListView(
    children: [
      Container(
        height: 350,
        ...
      ),
      ...
    ],
  ),
]

Thank you for your help!

0

There are 0 best solutions below