How to add multiple list views in to sliver list like this in this picture- flutter

Issue

I was trying to make a app like this. how to add that two lists namely today and tomorrow in a Sliver?

this model

Solution

1st use CustomScrollView, then use MultiSliver from sliver_tools

it will be like

 - CustomScrollView 
   - SliverAppBar 
   - MultiSliver
      - PinnedHeader(i prefer)
      - Column of Today
   - MultiSliver
      - PinnedHeader(i prefer)
      - Column of next ...

Answered By – Yeasin Sheikh

Answer Checked By – Candace Johnson (FlutterFixes Volunteer)

Leave a Reply

Your email address will not be published. Required fields are marked *