Center `CustomScrollView` if has space

Issue I have the folowing code: return Scaffold( body: CustomScrollView( physics: const AlwaysScrollableScrollPhysics( parent: BouncingScrollPhysics(), ), controller: controller, slivers: [ SliverToBoxAdapter( child: Center( child: Padding( padding: const EdgeInsets.symmetric(vertical: 64), child: Text( ‘Title’, style: theme.textTheme.titleLarge?.copyWith( fontWeight: FontWeight.bold, color: theme.colorScheme.onPrimary, ), ),

Continue reading

Flutter controll scrolling priority

Issue 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

Continue reading