react-native-htmlview icon indicating copy to clipboard operation
react-native-htmlview copied to clipboard

Can't vertically scroll on android

Open adelpro opened this issue 11 months ago • 0 comments

When then HTMLView content is large, I can't scroll vertically on android.

   <ScrollView
        style={{
          backgroundColor: 'transparent',
        }}
        contentContainerStyle={}
        nestedScrollEnabled
      >
        <ThemedView style={{ flex: 1 }}>
          <HTMLView
            value={tafseerText}
            style={{
              backgroundColor: 'transparent',
              paddingHorizontal: 10,
            }}
            stylesheet={{
              p: {
                color: textColor,
                fontFamily: 'Amiri_400Regular',
                backgroundColor: 'transparent',
                textAlign: 'right',
              },
            }}
            addLineBreaks={false}
          />
        </ThemedView>
      </ScrollView> 

adelpro avatar Nov 26 '24 10:11 adelpro