Fix scrollbar behaviour in splitview (#10685)

This commit is contained in:
Samuel Newman
2026-06-02 19:41:48 +03:00
committed by GitHub
parent fd9f988b90
commit 2b31047b0d
+1 -1
View File
@@ -345,7 +345,7 @@ function ListImpl<ItemT>(
style, style,
disableFullWindowScroll && { disableFullWindowScroll && {
flex: 1, flex: 1,
overflowY: 'scroll', overflowY: isWithinSplitView ? 'auto' : 'scroll',
}, },
]} ]}
ref={nativeRef as unknown as React.RefObject<View>}> ref={nativeRef as unknown as React.RefObject<View>}>