Skip to content

Instantly share code, notes, and snippets.

@olafkrueger
Created December 7, 2017 14:34
Show Gist options
  • Save olafkrueger/8fa920ce490e6594e4a82a2eb7329991 to your computer and use it in GitHub Desktop.
Save olafkrueger/8fa920ce490e6594e4a82a2eb7329991 to your computer and use it in GitHub Desktop.
Just a FlexJS/Royale List snippet
<?xml version="1.0" encoding="utf-8"?>
<js:Application xmlns:js="library://ns.apache.org/flexjs/basic">
<js:valuesImpl>
<js:SimpleCSSValuesImpl />
</js:valuesImpl>
<js:initialView>
<js:View>
<js:List labelField="label">
<js:dataProvider>
<fx:Array>
<fx:Object label="One"/>
<fx:Object label="Two"/>
<fx:Object label="Three"/>
<fx:Object label="Four"/>
<fx:Object label="Five"/>
</fx:Array>
</js:dataProvider>
</js:List>
</js:View>
</js:initialView>
</js:Application>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment