skip to Main Content

Flutter controll scrolling priority

I have a code that has these main widgets: CustomScrollView( physics: const AlwaysScrollableScrollPhysics( parent: BouncingScrollPhysics(), ), slivers: [ SliverFillRemaining( hasScrollBody: true, child: ListView( children: [], ), ), ], ), I have it this way because around the ListView widget I…

VIEW QUESTION
Back To Top
Search