Flutter: Clip a column to prevent overflow
问题 Pretty simple question, but I haven't been able to find an answer. I have a layout structure in Flutter like this: Inkwell Card ScopedModelDescendant Column Container[] The number of containers in the column is variable. The goal is that it should look like this: But instead, it ends up doing this: I was able to create that "ideal" look by putting a SingleChildScrollView between the ScopedModelDescendant and the Column , but of course that's not what I want, because I don't want it to scroll.