Home > Blockchain >  How can i create this type of design in flutter?
How can i create this type of design in flutter?

Time:01-06

I have a list of items i want to filter with when a container is selected, when you select an item it should take you a different widget which also have a list of items.

I'll give a picture below for better clarifications.

Expected Result

I try looking for packages in pub.dev that can help me achieve this faster but can't find one.

I also tried achieving this with my customisations but i can't get it. :(

Pleas i'll need answers. Thank you!

CodePudding user response:

I think this package will help you to achieve this: enter image description here

CodePudding user response:

Use FilterChip Widget and ListView widget(Horizontal).

  • Related