Binwell / FastGrid

FastGrid component for Xamarin.Forms based on Android RecyclerView and iOS UICollectionView
MIT License
108 stars 25 forks source link

FastGrid not working in iOS with Xamarin.Forms 4+ #7

Open muhaym opened 5 years ago

muhaym commented 5 years ago

The control doesn't render at all in iOS with Xamarin Forms 4.x releases. Works fine in Android Last properly working version is Xamarin.Forms 3.6.0.539721

Some Findings

var size = Device.Info.ScaledScreenSize; Gives 0 width and height in iOS with Xamarin Forms 4+ releases but works fine in 3.6.0.539721

gsgou commented 5 years ago

Xamarin Essentials as an alternative to set the Cell sizes works var width = DeviceDisplay.MainDisplayInfo.Width / DeviceDisplay.MainDisplayInfo.Density;

muhaym commented 5 years ago

I did the same for timebeing :)