I want to add to my user profile the swipe category like instagram has : https://imgur.com/a/ALeXB73 but I don’t know what package I should use or if there is a package that has this
I want to add to my user profile the swipe category like instagram has : https://imgur.com/a/ALeXB73 but I don’t know what package I should use or if there is a package that has this
2
Answers
Good News! There is no need to use a package as there is already a widget from the flutter library that handles this pretty good. The widget is DefaultTabController. It allows you to specify tabs and its contents. An Example could be:
OR
In your case you would replace
Tab(text: 'LEFT')
with something likeTab(icon: yourIcon)
or you could also specify a custom widget to have as the button –Tab(widget: Text('LEFT'))
The content of the page is specified in the children parameter. (first tab has first child as its page)
Try below code hope its help to you.