I am creating application using Xamarin.Forms. My application is producing expected UI in iOS device but most of controls are missing/hidden when running in Android device. I face this kind of problem frequently because of minor mistake in layout. It's quite tough to look at all constraints and quickly find the reason of breakage specially in Relative layout.
I would like to know if there is any way to debug or check frames of all controls by firing any command or any tools that can show me the frame of rendered component of screen or any method which called at end of life cycle where I can log everything(Like viewDidLayoutSubviews
in case of iOS native apps ).
Any help would be appreciated.