You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've noticed that to capture all the content within a ScrollView, it's necessary to wrap the content inside a single View, as shown in the following examples:
However, I'm currently utilizing the stickyHeaderIndices property of the ScrollView, which designates specific content elements as sticky headers based on their indices in the content array:
<ScrollViewstickyHeaderIndices={[0]}// Refers to the first child element><Text>...The 1st Content Goes Here...</Text><Text>...The 2nd Content Goes Here...</Text><Text>...The 3rd Content Goes Here...</Text><Text>...The 4th Content Goes Here...</Text></ScrollView>
Given this setup, how can I capture the entire content of the ScrollView, including both the sticky headers and the scrollable content?