From 96c670a8f0af373d055a7ec81fc92afc89f4fe5a Mon Sep 17 00:00:00 2001 From: zoomchan-cxj Date: Fri, 26 Aug 2022 15:53:35 +0800 Subject: [PATCH] fix(hippy-react): add overflow scroll to fix listview unable to scroll --- packages/hippy-react/src/components/list-view.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/hippy-react/src/components/list-view.tsx b/packages/hippy-react/src/components/list-view.tsx index a12a82eab35..5bad016bb6d 100644 --- a/packages/hippy-react/src/components/list-view.tsx +++ b/packages/hippy-react/src/components/list-view.tsx @@ -448,6 +448,7 @@ class ListView extends React.Component { } (nativeProps as ListViewProps).initialListSize = initialListSize; (nativeProps as ListViewProps).style = { + overflow: 'scroll', ...style, }; }