Flutter - ListView inside on a TabBarView loses its scroll position

前端 未结 7 1522
误落风尘
误落风尘 2021-01-30 11:07

I have a very simple Flutter app with a TabBarView with two views (Tab 1 and Tab 2), one of them (Tab 1) has

7条回答
  •  伪装坚强ぢ
    2021-01-30 11:25

    To be more specific, you can use PageStorageKey with any scrollable view to keep the scrolling position, e.g.:

    new ListView.builder(key: new PageStorageKey('myListView'), ...)
    

提交回复
热议问题