Parth
Results
2
comments of
Parth
Full App Controller ``` int currentIndex = 0; void onItemTapped(int index) { currentIndex = index; update(); } List screen = [ HomePage(), History(), Profile(), ]; ``` Full App Screen ```...
I fixed it with: ``` DotNavigationBar( itemPadding: EdgeInsets.only(left:12,right:12,top: 4,bottom:4) // Customize this as per your needs items: [ ... ], ) ```