PageView
를 사용하다 보면 좌우 여백에 이전, 다음 페이지를 보이게 하고 싶을 때가 있다.
이때는 PageView
의 PageController
생성자에 viewportFraction
값을 주는 것으로 설정할 수 있다.
PageView.builder(
//controller 생성자에 값을 준다.
controller: PageController(viewportFraction: 0.8),
itemBuilder: (_, index) => child: _buildPage(index),
itemCount: list.length,
);
viewportFraction
은 0-1까지의 값을 가지며, 1에 가까울 수록 페이지 전체를 차지하게 된다.