Search code examples
flutterflutter-layout

Flutter Scrollcontroller maxScrollExtent doesn't go till the end of list


it stops before last element in list. Is there a way to go till the end container of the last element

        controller
          ..animateTo(
            controller.position.maxScrollExtent,
            curve: Curves.easeIn,
            duration: const Duration(milliseconds: 300),
          );
      });```





Solution

  • Using Without Animation Solved the Problem

    Timer(Duration(milliseconds: 500), () {
            controller.jumpTo(controller.position.maxScrollExtent);
          });