개발/Flutter
ScrollView내의 google map 스크롤 가능하게 설정
leebera_
2022. 7. 2. 16:30
아래 코드를 구글 맵에 넣으면 동작
gestureRecognizers: {
Factory<OneSequenceGestureRecognizer>(
() => EagerGestureRecognizer()
)
},
테스트 코드
참고
How to avoid scrolling ListView when scrolling in map (MapBox) within ListView
When I swipe my map sometimes it is leading to scroll of ListView, so I would like to discover optimal solution for this situation. I am using flutter_map package and it has no gestureRecognizers
stackoverflow.com