yishayw opened a new issue #954:
URL: https://github.com/apache/royale-asjs/issues/954
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:mx="library://ns.apache.org/royale/mx"
xmlns:comp="components.*"
>
<fx:Style source="app-styles.css" />
<fx:Script>
<![CDATA[
private function onClick():void
{
myGroup.height = myGroup.height == 20 ? 200 :
20;
}
]]>
</fx:Script>
<mx:ViewStack resizeToContent="true" width="100%" id="myViewStack">
<s:NavigatorContent width="100%" id="myVbox">
<s:Group id="myGroup" width="100%" height="20"
style="background-color: blue"/>
</s:NavigatorContent>
</mx:ViewStack>
<s:Button click="onClick()" label="Click" bottom="0"/>
</s:Application>
```
Blue content should be visible after clicking button
----------------------------------------------------------------
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]