Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

128
Views
React Native Scrollable Content with Interactable View

I am using wix's interactble package to create a sliding curtain from the bottom of the screen with two snapping points. I want to put scrollable content inside, but when I do, the ScrollView never reaches the end.

The example of my component:

<View style={{ flex: 1 }}>
      <Interactable.View
        snapPoints={[
          { y: 100, id: 'top' },

          {
            y: 200,
            id: 'bottom'
          }
        ]}
        initialPosition={{ y: 100 }}
        onSnap={onSnap}
        verticalOnly={true}
      >
        <View style={{ backgroundColor: 'blue', height: 100 }}>
          <Text>Header</Text>
        </View>
        <ScrollView>
          <View
            style={{
              height: 1000,
              justifyContent: 'flex-end',
              backgroundColor: 'orange'
            }}
          >
            <Text>The Content</Text>
          </View>
        </ScrollView>
      </Interactable.View>
</View>

The content is not visible because the view with height: 2000 never reaches the end.

Is there any workaround for this or other library that I can use to implement such curtain with scrollable content?

about 4 years ago · Santiago Trujillo
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!