Created
May 13, 2016 13:48
-
-
Save velara3/24d23418258c985263022fd6b5ddc32d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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