What is the difference between TabBarView
and PageView
in Flutter?
I want to implement like this. And I know both can do.
From flutter-examples
What is the difference between TabBarView
and PageView
in Flutter?
I want to implement like this. And I know both can do.
From flutter-examples
TabBarView is the widget used to each page with different functionalty that are split with tab. TabBarView link with TabController. i.e Like WhatsApp have tabs with three different functionality page like Chats, Status, Calls.
PageView is link with PageController. You can use for Slider, carousel purpose.
Each page have different UI and functionality use TabBarView. If same ui and functionalty all page data only differ then you can go with PageView
TabBarView for
PageView for