I am trying the code which I have attached below. But there I am facing the issue like Failed assertion: line 108 pos 12: '_positions.length == 1': ScrollController attached to multiple scroll views.
CustomScrollView(
controller: scrollController,
slivers: [
SliverList(
delegate: SliverChildBuilderDelegate(
(BuildContext context, int index) {
return Column(
children: [
ListTile(
title: Text('Item $index'),
),
Divider(),
],
);
},
childCount: 100,
),
),
],
),
Timer(
const Duration(milliseconds: 100),
() => scrollController
.jumpTo(scrollController.position.maxScrollExtent));
Can anyone tell any solution for this