Hello,
This is the menu of our app. When a category is chosed it changes color but we cannot make it work to get back to the original color when you select an other.Any suggestions?
This is the code
<Page ux:Class="MoviePage">
<JavaScript File="MoviePage.js" />
<Panel ux:Class="Categories" Margin="18,0,0,5" Alignment="Left">
<Text ux:Name="text" Value="{item}" FontSize="20" TextColor="#fff" Alignment="Center" Margin="15,0,0,0" />
<Clicked Handler="{clickAction}">
<Toggle Target="tagged"/>
</Clicked>
<WhilePressed>
<Scale Factor=".85" Duration=".08" Easing="QuadraticInOut" />
</WhilePressed>
<WhileTrue ux:Name="tagged">
<Change text.TextColor="#fed166"/>
</WhileTrue>
</Panel>
<Panel Margin="0,50,0,0">
<StackPanel ItemSpacing="10">
<Each Items="{categoriesView}">
<Categories />
</Each>
</StackPanel>
</Panel>
</Page>