Auto Vertical Height in ListView.builder - flutter

How can i do vertical listview with different height of items. I have listview.builder in listview.builder. My inner listview have different count of items. So i need Auto Vertical Height in ListView. Could you help me?
enter image description here

Related

Clipping widget only vertically

I have a ListView.builder that contains Containers with blurred shadows. By default, the ListView clips the edges, which means my shadows get clipped. If I remove the clip on the Listview by using clipBehavior: Clip.none, the Listview then scrolls items vertically beyond the bounds of the ListView.
Is there a way that I can clip the ListView only vertically, leaving the shadows intact horizontally?

Flutter dynamic Dismissible height with ExpansionTile

I have Dismissible with ExpansionTile as a child. Is there any way to make Dismissible be flexible in height? For now it has static height, but should have child's height
Within a Column (for flexible height), you can use a Flexible, with fit:FlexFit.loose, This will size to the child.

Flutter , keeping container of a ListView on the top of the screen when scrolling down

how to keep a specific container of a ListView on the top of the screen when scrolling down?
for example:
appBar
image1(inside the listview)
tabs(should stay below appBar but image1 disappears when scrolling down)
list item 1
list item 2
....
navBar
You have to work with SliverList and SliverAppBar to achieve a layout like that.
Read more about it in this article.

How can I align in Flutter an area at the bottom of screen only if the content above does fit in screen. If not, all content should be scrollable

I would like to have a screen in Flutter with 2 buttons that should always stay at the bottom screen, unless the height of the content above the buttons plus the height of the 2 buttons overflows the screen height, in which case I would like that all content should be scrollable. How can I achieve this?

Flutter prevent TextField nestedscrollview

How to prevent Textfield scrolling when text is longer then screen height the problem is that I have CustomScrollView inside of it horizontal ListView and textfield and I want that when you scroll text inside textfield it would scroll with ListView now it scrolls just text and leaves ListView pinned to the place, but if you scroll while tapping outside textfield it works as expected.
Seems that nested scrollview would solve such problem but no idea how to implement it with two child widgets
You can use a NestedScrollView and a controller and then ListView will work.