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

146
Views
React native - Adapt horizontal ScrollView's height to its children

See the following snack

I need to adapt the height of the ScrollView to its children. It seems that ScrollView is using { flex: 1 } by default (not sure). Any ideas how to make it possible?

<View style={{ flex: 1 }}>
  <ScrollView horizontal style={{ backgroundColor: 'red' }}>
    <View
      style={{ width: 60, height: 30, marginLeft: 5, backgroundColor: 'lime' }}
    />
  </ScrollView>

  <View style={{ flex: 1, backgroundColor: 'yellow' }} />
</View>

Thank you.

Note: Is it possible to do it without using { height: 30 } ?

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

Wrapping the ScrollView inside a View does the trick.

<View style={{ flex: 1 }}>
  <View>
     <ScrollView horizontal style={{ backgroundColor:"red" }}>
        <View style={{ width: 60, height: 30, marginLeft: 5, backgroundColor: "lime" }} />
     </ScrollView>
  </View>

   <View style={{ flex: 1, backgroundColor:"yellow" }} />
</View>
about 4 years ago · Juan Pablo Isaza Report
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!