Reputation: 735
Thanks in advance!
I haven't tried the free VisualStudio 2015 Community Edition, but I know that it has Xamarin Starter Edition included. I read that it has Xamirin.Android/iOS
but not Xamarin.Forms
, also that there are certain restrictions.
I wonder how to do the UI in the Starter Edition if it doesn't include Xamarin.Forms
. What technology is being used to do the UI in this case (for Android)? Is it MVVM oriented?
If it is somehow possible to do the UI for Android in the starter edition, what UI development approach/pattern is best, so that it's best to migrate to Xamarin.Forms later on? Is it classic MVVM? Or may be it's even easier, so that I will be able to use the same say XAML code...
Upvotes: 2
Views: 469
Reputation: 45391
You are able to design a fully native Android UI using Xamarin. Read the tutorial.
If you want to use the MVVM pattern then you should consider using MvvmCross. Read the tutorials, see the sample codes or watch the N+1 videos.
Upvotes: 2