Advertisement
Guest User

Untitled

a guest
May 23rd, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <fastdatagroup:FastList
  2.         id="fastList"
  3.         top="77"
  4.         width="100%"
  5.         bottom="62"
  6.         itemRenderer="{ArticleRenderer}"
  7.         dataProvider="{model.articles}" />
  8.  
  9. ————— SNIP —————
  10.  
  11. <fastdatagroup:FastItemRenderer
  12.  ...
  13.  height="100%">
  14.  
  15.   <s:VGroup
  16.     paddingLeft="15"
  17.     paddingRight="15"
  18.     paddingTop="30"
  19.     height="100%">
  20.    
  21.     <!-- <view:BitmapLabel -->
  22.     <s:Label
  23.         text="{data.title}"
  24.         fontFamily="Frutiger"
  25.         fontSize="26"
  26.         color="0x3b4959"
  27.         cffHinting="horizontalStem"
  28.         kerning="on"
  29.         trackingLeft="-1"
  30.         trackingRight="-1"
  31.         paddingLeft="-1"
  32.         />
  33.      
  34.     <view:CoverImage
  35.         source="{data.coverImage}"
  36.         maintainAspectRatio="true"
  37.         scaleContent="true"
  38.         top="16"
  39.         bottom="0"
  40.         />
  41.      
  42.   </s:VGroup>
  43.  
  44. ————— SNIP —————
  45.  
  46. CoverImage never gets a height set, so I can't scale the images to fit!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement