Hi there,
I am using Syncfusion.Xamarin.Buttons version 19.2.0.57 on Android and trying to use the SfChipGroup.InputView as below and the input view does not show when the page loads. If I modify the xaml and it hot reloads then the button will display correctly but will not work again on reload.
This appears to be related to using SfChipGroup.ChipLayout, if I remove that then the InputView works correctly.
cheers
Martin
Snippet<buttons:SfChipGroup VerticalOptions="Center"
x:Name="inputChipGroup"
ChipImageWidth="35"
ItemsSource="{Binding Source ={x:Reference editViewModel}, Path=Warnings,Mode=TwoWay}"
DisplayMemberPath="Name"
ShowIcon="False"
Type="Input"
ChipPadding="8,8,0,0">
<buttons:SfChipGroup.InputView>
<Button Text="Add"
Margin="8,8,0,0"
BackgroundColor="White"
WidthRequest="100"
HeightRequest="35" />
buttons:SfChipGroup.InputView>
<buttons:SfChipGroup.ChipLayout>
<FlexLayout HorizontalOptions="Start"
VerticalOptions="Center"
Direction="Row"
Wrap="Wrap"
JustifyContent="Start"
AlignContent="Start"
AlignItems="Start" />
buttons:SfChipGroup.ChipLayout>
buttons:SfChipGroup>