fluttercandies / flutter_tilt

👀 Easily apply tilt parallax hover effects for Flutter, which supports tilt, light, shadow effects, and gyroscope sensors | 为 Flutter 轻松创建倾斜视差悬停效果,支持倾斜、光照、阴影效果和陀螺仪传感器
https://pub.dev/packages/flutter_tilt
MIT License
145 stars 6 forks source link

Enabling Smooth Scrolling for Parent Widget When `enableGestureTouch` is Disabled #15

Closed LOCKEDFILE closed 1 month ago

LOCKEDFILE commented 1 month ago

Issue


Therefore, I've modified the following code to address the aforementioned issue

GestureDetector(
    onVerticalDragUpdate :  _tiltConfig.enableGestureTouch ?  (_) {} : null ,  
    onHorizontalDragUpdate :  _tiltConfig.enableGestureTouch ?  (_) {} : null ,  
    ...