We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f95583 commit 907b09eCopy full SHA for 907b09e
packages/uikit-react-native/src/components/ChatFlatList/FlatListInternal.tsx
@@ -15,16 +15,13 @@ type BidirectionalProps<T> = {
15
};
16
17
function shouldUseScrollViewEnhancer() {
18
- if (Platform.OS !== 'android') return false;
19
-
20
if (Platform.constants.reactNativeVersion?.major < 1) {
21
if (Platform.constants.reactNativeVersion?.minor < 72) {
22
return true;
23
}
24
25
return false;
26
27
28
function getFlatList(): FlatListBidirectional {
29
if (shouldUseScrollViewEnhancer()) {
30
try {
0 commit comments