Search code examples
flutterdartanimationtween

Implement custom tab bar in flutter


How do I implement this kind of tab bar and tab bar view in flutter. When user swipe left the tab change to dog and the dog product get bigger.

enter image description here


Solution

  • I would say the easier way to accomplish that design is to couple a slider with a top bar and bind the indexes.

    You could start by using a slider package, customize it to look exactly like your design. Then you add a Row on top of it with your categories and bind the onPressed from this row of buttons to jump on the desired index in the slider.