reactjs - A lot of space between two scrollviews because wrap - React Native -


i have research without solution expect can me. creating different scrollviews , view not correct. between scrollview end , scrollview start there long space , don't know style modify avoid that. have tried possible solutions found in internet nothing solve problem :( when scrollview set wrap, long space appear!

any idea?

thanks in advanced!

i creating this:

<view>   <scrollview          contentcontainerstyle={{flexdirection:'column', aligncontent:'space-around'}}         automaticallyadjustcontentinsets={false}         contentinset={{bottom:49}}         style = {{paddingbottom: 0, marginbottom:0}}>             <text>testing</text>        <scrollview             contentcontainerstyle={globalstyles.common_styles.scrollview}            automaticallyadjustcontentinsets={false}            contentinset={{bottom:49}}            style={{padding:0, margin:0}}>               <text>scrollview end</text>       </scrollview> //here problem!!! lot of space in ios simulator.       <text>scrollview start</text>    <scrollview>       <text>test</text>    </scrollview> </scrollview> </view> globalstyles.common_styles.scrollview scrollview: {     flexdirection: 'row',    flexwrap: 'wrap', } 

there long space following scrollview


Comments

Popular posts from this blog

c# - Update a combobox from a presenter (MVP) -

How to understand 2 main() functions after using uftrace to profile the C++ program? -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -