Hallo together,
on my android app, when setting the
DropDownStrokeThickness="2" to any value, the stroke will cover the whole item and the text in the dropdown is not visible. This happend on large xaml pages, with alot of elements and when I use the sftabview. After setting the
DropDownStrokeThickness="0", the text on the dropdown showsing correctly
<combobox:SfComboBox
x:DataType="{x:Null}"
DisplayMemberPath="SectionName"
DropDownBackground="{AppThemeBinding Light={StaticResource SFInputBackgroundLight},
Dark={StaticResource SFInputBackgroundDark}}"
DropDownStroke="{AppThemeBinding Light={StaticResource SFInputBorderLight},
Dark={StaticResource SFInputBorderDark}}"
DropDownStrokeThickness="2"
FontAttributes="Bold"
FontSize="16"
HeightRequest="50"
IsEditable="False"
ItemsSource="{Binding LoadTrackCombo}"
SelectedItem="{Binding SelectedItemSectionWeatherCopy, Mode=TwoWay}"
TextColor="{AppThemeBinding Light={StaticResource SFInputHintTextNormalLight},
Dark={StaticResource SFInputHintTextNormalDark}}">
I fixed this on my side for now, setting the DropDownStrokeThickness to zero.
Thanks,
Markus