Skip to content

Instantly share code, notes, and snippets.

@olafkrueger
Created May 18, 2016 18:01
Show Gist options
  • Save olafkrueger/de71b5bfd02c2b09cd8071491ccd17fe to your computer and use it in GitHub Desktop.
Save olafkrueger/de71b5bfd02c2b09cd8071491ccd17fe 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";
.divStyle {
box-shadow: 5px 5px 5px #888;
font-family: Arial, Helvetica;
background-color: green;
}
</fx:Style>
<js:valuesImpl>
<js:SimpleCSSValuesImpl />
</js:valuesImpl>
<!-- Initial View -->
<js:initialView >
<js:ViewBase >
<js:Container x="10" y="10" width="500" height="500" className="divStyle">
<js:Label text="Hello World" x="100" y="100" />
</js:Container>
</js:ViewBase>
</js:initialView>
</js:Application>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment