본문 바로가기
리액트네이티브

리액트 네이티브 - 웹뷰 스크롤 작동 안할때 (react native webview scroll not working)

by 알찬 퍼블리셔 2020. 1. 27.
728x90
반응형

TouchableWithoutFeedback 로 감싸주면 문제해결!

정확한 원인은 모르겠다..... 아래 링크보고 한번해보니까 됐다..

<TouchableWithoutFeedback style={{ flex: 1, paddingHorizontal: 16 }}>
            <WebView
              originWhitelist={['http://', 'https://']}
              style={{ flex: 1, width: '100%' }}
              source={{ uri: '........' }}
              onError={(error) => {
                console.error(error);
              }}
            />
</TouchableWithoutFeedback>

 

 

참고 

https://stackoverflow.com/questions/52901404/react-native-android-issue-with-webview-scroll

728x90
반응형

댓글