Stack doesn't work inside Column - Flutter

4,683

Since column and stack will take up the screen size. To be able to use both together, you need to give the contents a certain height or need to be wrapped with expanded

column(
   children[
  container(height:100 child:stack..... //container or expanded
   ])
Share:
4,683
Mahdi Aghajani
Author by

Mahdi Aghajani

Updated on December 26, 2022

Comments

  • Mahdi Aghajani
    Mahdi Aghajani over 1 year

    Hope u all doing well. I have a problem with Stack and Column. When I want to use Stack inside Column's children, it doesn't work, anymore. here are 2 photos regarding my problem.

    Not working:
    enter image description here


    Working:
    enter image description here

    • Admin
      Admin over 3 years
      what is the problem what u wanna do ? if you send me photos and write what you want i can tell you