0

I have problem building one page with ListView and ExpansionTile. I have DefaultTabController page, in one tab page I represent list of items. When you reach end of this list there should be ExpansionTile, and when it openes it should appear another items list. Everything should be scroll-able and without height limitation (if it is possible). Something like that:

Container(
    child: Column(
        children: [
        Scrollbar(child: ListView.builder()),
        ExpansionTile(children: [Scrollbar(child: ListView.builder())]
        ]
    )
);

I have tried use Expanded Widget but received only errors. The main idea is for the page to be fully filled with items, and when reach the end, expand to another list and continue scrolling.

0 Answers0