You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you add multiple picker fields with icons to your page and then select one of them, every icon from every picker field is colored and not just the one you selected.
The yellow color is set in my styles.xaml as the accent color. Notice how both icons are colored yellow, while the border color changes of only the selected picker. In this screenshot, I selected the "Type" picker as indicated by the yellow border color.
Styles.xaml:
The text was updated successfully, but these errors were encountered:
Visual States are defined in InputField style and they're commonly used across all the InpuFields including PickerField. When you inherit your new style from InputFieldBaseStyle, the problem probably will be solved.
Can you try using CanCascade="True" and BasedOn="{StaticResource InputFieldBaseStyle}" for your style?
That leads to a crash. I also tried using BaseResourceKey="InputFieldBaseStyle", then the app was able to run, but the problem with the colored icons did not go away.
If you add multiple picker fields with icons to your page and then select one of them, every icon from every picker field is colored and not just the one you selected.
The yellow color is set in my styles.xaml as the accent color. Notice how both icons are colored yellow, while the border color changes of only the selected picker. In this screenshot, I selected the "Type" picker as indicated by the yellow border color.
Styles.xaml:
The text was updated successfully, but these errors were encountered: