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

Retrieving ETA (estimated time of arrival) with Google Distance Matrix API and public transit as transport mode -

android - ConstraintLayout: Realign baseline constraint in case if dependent view visibility was set to GONE -

c# - Populating Gridview inside Listview ItemTemplate On Web User Control from Code Behind -