bamlab / bamlab/react-native-image-header-scroll-view

View scrolling beyond content

Open
#135 0 comments 0 reactions 0 assignees View on GitHub
Dominant language
TypeScript
Stars
1k
Forks
101
PR merge metrics
No merged PRs in 30d

Description

The view is being allowed to scroll up further than the actual height of the content which in turn leaves quite a large blank space below. I already have a view wrapping the Triggering View, but the same problem still occurs. See image and code below

![IMG_9ADDACF04879-1](https://github.com/user-attachments/assets/53150b80-a0aa-4b6a-b96d-27398faa6c98)

```




{cityName}
{countryLocation && (



{countryLocation.location}, {countryLocation.country}


)}

{ tags && (
<>


{Object.entries(tags).map(([key, value], index) => (


{key.charAt(0).toUpperCase() + key.slice(1)} {/* Capitalizes the first letter of the key */}

{value}

))}


)}




{countryDesc && (


Description


{countryDesc}

{countryDesc.length > 100 && (


{showFullDesc ? 'Read Less' : 'Read More'}


)}

)}
{/* Itinerary */}
{itinerary.length > 0 && (
<>


Itinerary For You


{itinerary.map((rowData, index) => (



))}


)}






Book Now



```

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.