Hi Dimitri,
Thanks for using Syncfusion products.
We have checked the reported query from our side. We suspect you are reporting the crash in below bug report,
If yes, we would like to inform that above is the framework issue in latest Xamarin Version while loading Label directly inside Expander’s Header/Content and you can follow below bug for further updates from Xamarin team. Meanwhile, we suggest you to overcome the reported issue in sample by loading Label inside Grid.
|
Actual Code |
Expected Code |
|
<expander:SfExpander RelativeLayout.XConstraint="{ConstraintExpression Type=Constant, Constant=10}"
RelativeLayout.YConstraint="{ConstraintExpression Type=Constant, Constant=200}">
<expander:SfExpander.Header>
<Label Text="Items"/>
</expander:SfExpander.Header>
<expander:SfExpander.Content>
<Grid Padding="10,10,10,10" BackgroundColor="White">
<Label Text="Test" HeightRequest="50" VerticalTextAlignment="Center"/>
</Grid>
</expander:SfExpander.Content>
</expander:SfExpander> |
<expander:SfExpander RelativeLayout.XConstraint="{ConstraintExpression Type=Constant, Constant=10}"
RelativeLayout.YConstraint="{ConstraintExpression Type=Constant, Constant=200}">
<expander:SfExpander.Header>
<Grid>
<Label Text="Items"/>
</Grid>
</expander:SfExpander.Header>
<expander:SfExpander.Content>
<Grid Padding="10,10,10,10" BackgroundColor="White">
<Label Text="Test" HeightRequest="50" VerticalTextAlignment="Center"/>
</Grid>
</expander:SfExpander.Content>
</expander:SfExpander> |
We have mentioned the same in our UG document also. Please refer our online UG from following link,
If no and you are facing any other crash other than above, kindly share more details or revert us back with the issue replicated sample in order to analyze and provide better solution at our end.
Regards,
Lakshmi Natarajan