What's Changed
- Added a
nestedScrollEnabledprop, defaulting to false (#85). Previously the widget hardcodednestedScrollEnabled={true}on the underlying WebView, which on Android claimed vertical drag gestures and prevented a parent ScrollView/FlatList from scrolling, even when the auto-height widget had only a pixel or two of internal overflow.
Behavior change
If you embed a fixed-height widget that needs to scroll internally (for example live chat inside a scrollable screen), pass nestedScrollEnabled={true} to keep the old behavior. Note that Android WebView never hands the gesture back to the parent at the scroll boundary; that is an upstream platform limitation.
Full Changelog: v4.2.3...v4.5.0