Skip to content

Instantly share code, notes, and snippets.

@joshtynjala
Created March 26, 2015 21:27
Show Gist options
  • Save joshtynjala/bbc55b3080500f1cbece to your computer and use it in GitHub Desktop.
Save joshtynjala/bbc55b3080500f1cbece to your computer and use it in GitHub Desktop.
Feathers MXML binding
<?xml version="1.0" encoding="utf-8"?>
<f:LayoutGroup xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:f="library://ns.feathersui.com/mxml">
<f:layout>
<f:HorizontalLayout gap="10" horizontalAlign="center" verticalAlign="middle"/>
</f:layout>
<f:Slider id="slider1" minimum="0" maximum="1" value="0"/>
<f:Slider id="slider2" minimum="0" maximum="1" value="{slider1.value}"/>
</f:LayoutGroup>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment