Hi,
If I have the following xaml code:
<SfComboBox:SfComboBox x:Name="Box"
HorizontalOptions="StartAndExpand"
VerticalOptions="Center"
DataSource="{Binding Options, Converter={StaticResource ValueConverter}}"
SelectedItem="{Binding myClass.Value, Mode=TwoWay}"
Watermark="This is a long watermark"/>
where:
public MyClass
{
private int _Value;
public int Value
{
get => _Value;
set
{
_Value = value;
OnPropertyChanged();
}
}
}
public ObservableCollection<int> Options = new ObservableCollection<int>(){ 2, 4, 6, 8};
for UWP and Android, if I don't set the WidthRequest of the SfComboBox, it automatically renders with a width that displays everything correctly. But for iOS, if WidthRequest is not set, the width with which it renders is too small, and the Watermark is almost non-visible.
Is this a bug on SfComboBox for iOS? I would expect the same behavior on the 3 platforms.
Thanks,
Miguel