styleBinding样式的简单应用

<ui>
  <view>
    <container>
      <subViews>
        <label value="测试数据测试数据普通文本">
          <styleBinding>
            <attribute name="textColor" value="#ff0000"/>
            <attribute name="backgroundColor" value="#000000"/>
        </styleBinding>        
    </label>
</subViews>
</container>
</view>
</ui>

样式放在组件里面

或者放父层里面:

<ui>
  <view>
    <container>
      <styleBinding>
        <attribute name="textColor" value="#ff0000"/>
        <attribute name="backgroundColor" value="#000000"/>
    </styleBinding>
    <subViews>       
        <label value="测试数据测试数据普通文本"></label>  
    </subViews>   
</container>   
</view>
</ui>

posted @ 2020-08-27 00:05  tinyphp  Views(122)  Comments(0Edit  收藏  举报