From 0e1aae06447e85632f01f8c57436ff6e1f1aa468 Mon Sep 17 00:00:00 2001 From: Sana Date: Thu, 9 Oct 2025 13:43:24 +0300 Subject: [PATCH] Fix RTL scroll issue --- src/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.tsx b/src/index.tsx index a2f6a7c..998f06f 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -329,7 +329,7 @@ const styles = StyleSheet.create({ }, flatList: { flex: 1, - flexDirection: isAndroidRTL ? 'row-reverse' : 'row', + flexDirection: 'row', }, paginationContainer: { position: 'absolute',