tabbar를 구현했을 때 스와이프로 카테고리 이동을 못하게 하고 싶을 때가 있다. 그럴 때는 아래와 같이 'physics: NeverScrollableScrollPhysics(),' 부분을 추가해주면 된다.
TabBarView(
physics: NeverScrollableScrollPhysics(),
controller: tabcontroler,
children: <Widget>[
Container(color: Colors.red),
Container(color: Colors.green),
Container(color: Colors.blue),
],
),
참고
'ETC > Flutter' 카테고리의 다른 글
[flutter,dart] List의 filled/generate 생성자 (0) | 2021.12.29 |
---|---|
[flutter] listView Scroller disable(리스트 뷰 스크롤 막기) (0) | 2021.12.06 |
[flutter] 서버로 이미지 업로드 하기(Dio, image_picker) (0) | 2021.11.30 |
[flutter] 간단한 막대그래프 구현하기(리뷰 그래프) - vertical_barchart (0) | 2021.11.23 |
[flutter] 이미지 추가 시 unable to load asset 에러 해결 방법 (0) | 2021.11.23 |
[flutter] Bottom Overflowed By ??? Pixels 오류 해결 (0) | 2021.11.23 |
댓글