I'm trying to figure out if there is a way to get hold of the underlaying native view (or renderer) from within my iOS and Android specific projects.
What I actually would like to do on both platforms is to remove the cell separator line for the Xamarin.Forms.ListView.
It seems that I can extend the ListViewRenderer on iOS to alter the UITableView. separatorStyle property but I can't find any renderer for the ListView exposed on Android(?) so I can't get hold of the android.widget.ListView (which I guess it the native view) and remove the divider.
Maybe it isn't just possible yet? Or am I missing something?