var scroll = ScrollController(); 일단 위와 같이 scroll을 선언한후, scroll.position.pixels //스크롤한 픽셀값 scroll.position.maxScrollExtent //최대로 스크롤할수 있는 픽셀값 위와 같은 코드를 작성할 수 있다. if(scroll.position.pixels == scroll.position.maxScrollExtent) 위와 같은 조건문은 유저가 끝까지 내렸을 때를 판단해주는 조건문이다.