I am using BottomNavigationBar to navigate to diff SliverList. I observe that It does not retain to the last row that I scrolled. How can I fix this? I am using BottomNavigationBar to navigate to diff SliverList. I observe that It does not retain to the last row that I scrolled. How can I fix this? dart dart

I am using BottomNavigationBar to navigate to diff SliverList. I observe that It does not retain to the last row that I scrolled. How can I fix this?


PageStorageKey is what you are looking for!

Within your Profile page and ServiceRequestList page's SliverList widget, set a unique page storage key like the following:

SliverList(  key: PageStorageKey("somethingUnique"),)

PageStorageKey works with any widget that has a scrolling region.