yishayw opened a new issue #995:
URL: https://github.com/apache/royale-asjs/issues/995


   In  this app
   
   ```
   <?xml version="1.0" encoding="utf-8"?>
   <s:Application 
        xmlns:fx="http://ns.adobe.com/mxml/2009";
        xmlns:s="library://ns.apache.org/royale/spark"
        xmlns:comp="components.*"
        >
        <s:SkinnableContainer skinClass="components.MySkin" width="100%" 
height="100%">
                <s:Button label="hi"/>
        </s:SkinnableContainer>
   </s:Application>
   
   ```
   
   with this skin
   
   ```
   <?xml version="1.0" encoding="utf-8"?>
   <s:SparkSkin
        xmlns:fx="http://ns.adobe.com/mxml/2009";
        xmlns:s="library://ns.apache.org/royale/spark"
        >
   
        <fx:Metadata>
                [HostComponent("spark.components.SkinnableContainer")]
        </fx:Metadata>
        <s:BorderContainer id="myBorderContainer" backgroundColor="blue" 
width="100%" height="100%">
                <s:Group id="contentGroup">
                </s:Group>
        </s:BorderContainer>
   </s:SparkSkin>
   ```
   
   I expect a blue background as high as the screen, instead it is only 21px 
high.


----------------------------------------------------------------
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:
[email protected]


Reply via email to