개발/Flutter

How to stop scrollview from bouncing in flutter (앱에서 스크롤할 때 끝부분에 도달하였을 때 바운스 효과를 없애는법)

Byunpa24 2021. 8. 12. 15:01
반응형

How to stop scrollview from bouncing in flutter (앱에서 스크롤할 때 끝부분에 도달하였을 때 바운스 효과를 없애는법)

 

 

SingleChildScrollView를 사용해서 scroll을 하면 끝부분에서 bouncing effect 가 나타나는 것이 default 이다.

 

1) Bouncing effect

 

 

 

 

여기서 bouncing 을 원하지 않으면 physics: ClampingScrollPhysics()를 추가해주면 된다. 

 

2) not bouncing effect

 

 

 

반응형