I am building a Spotify clone in flutter and want to achieve the look of the buttons on the appbar(All, Music, Podcasts) they change colors like in tabbar function but I am not sure if this particular thing can be achieved with tab bar.
providing the image here, just take a look at the appbar at those buttons or tabs to be precise.
I have tried using tabbar under appbar but couldn't quite get that.

You can create the buttons you will use in a
Rowwith a for loop. Then you can display the widget you will display at the bottom usingPageViewBuilder. With the clicks of the buttons above, you change the index of the widgets inPageViewBuilder. In this way, the buttons will be as you want.