Flutter listview builder Scroll controller listener not firing inside list view?
问题 I have a listview builder widget inside another list view. Inner listview listener is not firing when scrolling position reaches to its end. initState() { super.initState(); _scrollController.addListener(() { if (_scrollController.position.maxScrollExtent == _scrollController.position.pixels) {function();} } Container( child: Listview( children: <Widget>[ Container(), ListView.builder( controller: _scrollController, physics: NeverScrollableScrollPhysics(), shrinkWrap: true, itemCount: list