[Flutter] TabController의 위치값 가져오기
2187 단어 tabController이슈해결flutterflutter
TabController
의 현재 위치값을 실시간으로 넘겨주고 싶은 경우, animation.addListener
를 통해 이벤트를 발생시키고 index
와 offset
을 더한 값으로 현재 탭 위치를 구할 수 있다.
void initState() {
super.initState();
tabController = TabController(length: 3, vsync: this);
tabController.animation?.addListener(() {
var position = tabController.index + tabController.offset;
//원하는 position 이벤트
_doSomething(position);
});
Author And Source
이 문제에 관하여([Flutter] TabController의 위치값 가져오기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@sangh518/tabcontrollerposition저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)