Xamain.Forms: 5.0.0.1931
SyncFusion.Xamarin.SfDataGrid: 18.4.0.39
SyncFusion.Xamarin.Core: 18.4.0.39
The size changed event just hides an ActivityIndicator.
private void ContentView_SizeChanged(object sender, EventArgs e)
{
ContentView contentView = sender as ContentView;
if (contentView.Height > 10)
{
foreach (View child in ((StackLayout)contentView.Parent.Parent).Children)
{
Label label = child as Label;
if (label != null)
{
label.IsVisible = false;
continue;
}
ActivityIndicator indicator = child as ActivityIndicator;
if (indicator != null)
{
indicator.IsRunning = false;
indicator.IsVisible = false;
}
}
}
}