how to implement camera bottom navigation bar like whatsapp

114

For this use, case use the PageView Widget.

Ref: https://medium.com/flutter-community/flutter-pageview-widget-e0f6c8092636

This should be like this below

PageView(
 controller: _controller,
 scrollDirection: Axis.vertical,
 children: [
   CamerWidget(),
   HomeScreenWidget(),
   MyPage3Widget(),
 ],
)
Share:
114
Huseyn
Author by

Huseyn

I love flutter

Updated on January 01, 2023

Comments

  • Huseyn
    Huseyn over 1 year

    how to implement camera tab in bottom navigation bar like Whatsapp :

    The main challenge here is to hide the bottom navigation bar and app bar and show them again, along with the ability to touch and move the view page.

    • Arul
      Arul almost 3 years
      Add some code samples that you tried.
  • Huseyn
    Huseyn almost 3 years
    Hi, the main challenge here is to hide the bottom navigation bar and app bar and show them again, along with the ability to touch and move the view page.
  • Arul
    Arul almost 3 years
    Try to Put the bottom nav bar inside the HomeScreenWidget