Skip to content

Instantly share code, notes, and snippets.

@velara3
Created May 13, 2016 13:48
Show Gist options
  • Save velara3/24d23418258c985263022fd6b5ddc32d to your computer and use it in GitHub Desktop.
Save velara3/24d23418258c985263022fd6b5ddc32d to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<js:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:js="library://ns.apache.org/flexjs/basic"
xmlns:local="*"
xmlns:models="models.*"
>
<fx:Style>
@namespace basic "library://ns.apache.org/flexjs/basic";
.labelStyles {
background-color: blue;
box-shadow: 5px 5px 5px #888;
}
</fx:Style>
<!-- Initial View -->
<js:initialView>
<js:ViewBase>
<js:Container>
<js:Label text="Hello World" x="100" y="100" className="labelStyles"/>
</js:Container>
</js:ViewBase>
</js:initialView>
<js:valuesImpl>
<js:SimpleCSSValuesImpl />
</js:valuesImpl>
<js:beads>
<js:ViewSourceContextMenuOption />
</js:beads>
<js:model>
<models:MyModel />
</js:model>
</js:Application>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment