We have an SfListView and inside of that is a label:
<code>
<Label
FontFamily="{StaticResource MercuryFontFamily}"
Text="{Binding CurrentConversationStatus, Converter={StaticResource statusIconFromConversationStatus}}"
VerticalTextAlignment="Center" HorizontalOptions="Center"
FontSize="Large">
<Label.Triggers>
<DataTrigger Binding="{Binding IsOverDue}" Value="False" TargetType="Label">
<Setter Property="TextColor" Value="{DynamicResource TextColor}" />
</DataTrigger>
<DataTrigger Binding="{Binding IsOverDue}" Value="True" TargetType="Label">
<Setter Property="TextColor" Value="{DynamicResource ErrorColor}" />
</DataTrigger>
</Label.Triggers>
</Label>
</code>
If you scroll quickly up and down through the SfListView the label will lose the color of the label. Changing to a StaticResource fixes this, but that doesn't play well with our theming.