Last active
April 17, 2016 17:04
-
-
Save joshtynjala/45ce13f0da3d8263f8a3ed7ba0432a85 to your computer and use it in GitHub Desktop.
Feathers SDK leftItems in a Panel's Header
This file contains hidden or 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
<f:Panel headerFactory="{factoryFromInstance(myHeader)}"> | |
<fx:Declarations> | |
<f:Header id="myHeader"> | |
<fx:leftItems> | |
<fx:Vector type="starling.display.DisplayObject"> | |
<f:Button/> | |
</fx:Vector> | |
</fx:leftItems> | |
</f:Header> | |
</fx:Declarations> | |
</f:Panel> |
This file contains hidden or 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
<f:Panel> | |
<f:headerProperties> | |
<fx:Object> | |
<fx:leftItems> | |
<fx:Vector type="starling.display.DisplayObject"> | |
<f:Button/> | |
</fx:Vector> | |
</fx:leftItems> | |
</fx:Object> | |
</f:headerProperties> | |
</f:Panel> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment