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
| <Grid Alignment="Center" CellSpacing="10" > | |
| <Each Items="{Fruits}"> | |
| <Text Value="{type}"/> | |
| <Each Items="{subtypes}"> | |
| <Text Value="{}" Margin="20,0,0,0" /> | |
| </Each> | |
| </Each> | |
| </Grid> |
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
| <Text Value="{Fruits}" /> |
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
| var Observable = require("FuseJS/Observable"); |
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
| var Fruits = Observable([ | |
| { "type": "Apple" }, | |
| { "type": "Orange" }, | |
| { "type": "Pear" }, | |
| { "type": "Banana" }, | |
| { "type": "Plum"} | |
| ]); |
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
| module.exports = { | |
| Fruits : Fruits | |
| }; |
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
| <Text Value="{Fruits}" /> |
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
| <Grid> | |
| <Image StretchMode="UniformToFill" File="Assets/icon.png"/> | |
| <Image StretchMode="UniformToFill" File="Assets/icon.png"/> | |
| <Image StretchMode="UniformToFill" File="Assets/icon.png"/> | |
| </Grid> |
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
| <Image ux:Class="Icon" StretchMode="UniformToFill" File="Assets/icon.png"/> |
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
| <Grid> | |
| <Icon/> | |
| <Icon/> | |
| <Icon/> | |
| </Grid> |
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
| <!-- ColorPalette --> | |
| <Panel> | |
| <float4 ux:Global=”SecondarySolid” ux:Value=”#8A5182" /> | |
| <float4 ux:Global=”DarkGrey” ux:Value=”#636363" /> | |
| <float4 ux:Global=”MidGrey” ux:Value=”#979797" /> | |
| <float4 ux:Global=”LightGrey” ux:Value=”#D8D8D8"/> | |
| <float4 ux:Global=”PrimaryText” ux:Value=”#282D67" /> | |
| <float4 ux:Global=”PrimarySolid” ux:Value=”#426E89" /> | |
| <float4 ux:Global=”TextGrey” ux:Value=”#3A4454" /> | |
| </Panel> |