At the moment our company is using the Xamarin
framework to create apps for Android
and IOS
.
We looked at MVVMCross
for even more reusable code across the platforms. however the creating of platform specific views bothered us and we wanted to go further and created a shared xml file where we define the view for all platforms wherever that was possible.
These xml files are constructed like a XAML file which we then implement on the different platforms. for example
<MapControl Width="100" />
converts to a MKMapView in IOS
and a com.google.android.gms.maps.MapFragment on Android
(just to give a rough example)
Anyway, my question is if anyone knows any opensource frameworks/ projects that implement a similar structure as stated above.
Perhaps this is even on the road map for MVVMCross
?