|
|
|
@ -4,7 +4,40 @@
|
|
|
|
|
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml">
|
|
|
|
|
|
|
|
|
|
<Style TargetType="ActivityIndicator">
|
|
|
|
|
<Style x:Key="StyleCollectionStack" TargetType="StackLayout">
|
|
|
|
|
<Setter Property="VisualStateManager.VisualStateGroups">
|
|
|
|
|
<VisualStateGroupList>
|
|
|
|
|
<VisualStateGroup x:Name="CommonStates">
|
|
|
|
|
<VisualState x:Name="Normal" />
|
|
|
|
|
<VisualState x:Name="Selected">
|
|
|
|
|
<VisualState.Setters>
|
|
|
|
|
<Setter Property="BackgroundColor"
|
|
|
|
|
Value="Transparent" />
|
|
|
|
|
</VisualState.Setters>
|
|
|
|
|
</VisualState>
|
|
|
|
|
</VisualStateGroup>
|
|
|
|
|
</VisualStateGroupList>
|
|
|
|
|
</Setter>
|
|
|
|
|
</Style>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<Style x:Key="StyleCollectionGrid" TargetType="Grid">
|
|
|
|
|
<Setter Property="VisualStateManager.VisualStateGroups">
|
|
|
|
|
<VisualStateGroupList>
|
|
|
|
|
<VisualStateGroup x:Name="CommonStates">
|
|
|
|
|
<VisualState x:Name="Normal" />
|
|
|
|
|
<VisualState x:Name="Selected">
|
|
|
|
|
<VisualState.Setters>
|
|
|
|
|
<Setter Property="BackgroundColor"
|
|
|
|
|
Value="Transparent" />
|
|
|
|
|
</VisualState.Setters>
|
|
|
|
|
</VisualState>
|
|
|
|
|
</VisualStateGroup>
|
|
|
|
|
</VisualStateGroupList>
|
|
|
|
|
</Setter>
|
|
|
|
|
</Style>
|
|
|
|
|
|
|
|
|
|
<Style TargetType="ActivityIndicator">
|
|
|
|
|
<Setter Property="Color" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}" />
|
|
|
|
|
</Style>
|
|
|
|
|
|
|
|
|
|