You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@weex.apache.org by GitBox <gi...@apache.org> on 2019/08/16 10:35:09 UTC

[GitHub] [incubator-weex] colianghan opened a new issue #2832: [iOS] Unexpected behavior when list and scroller where weex version is 0.20.0

colianghan opened a new issue #2832: [iOS] Unexpected behavior when list and scroller  where weex version is 0.20.0
URL: https://github.com/apache/incubator-weex/issues/2832
 
 
   this is my code 
   
   <template>
     <list>
   		<cell>
   			<scroller :scroll-direction="'horizontal'" style="width:1555px">
   				<div class="c">
   					<div class="l"></div>
   					<div class="r"></div>
   				</div>
   			</scroller>
   		</cell>
   	</list>
   </template>
   
   <script>
     export default {
       data () {
         return {
           message: 'Hello Weex!'
         }
       }
     }
   </script>
   
   <style scoped>
     .c{
   		flex-direction: row;
   		height: 500px;
   	}
   	.l{
   		width:750px;
   		height:500px;
   		background-color:yellow;
   	}
   	.r{
   		width: 250px;
   		height:500px;
   		background-color: blue;
   	}
   
   </style>
   
   
   , use ios device test , scroller is no able

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services