Tab Control in MVVM CROSS
We are developing an application that supports WP, Android & iOS operating systems using Xamarin framework. Need to create two tabs Filter & Search, using filter tab will select some values from drop down, date picker and load the listing grid of search tab. But I couldn't able to find a sample application for creating tab control in MVVM CROSS (Portable Library Class). ViewModel Class: public class SearchWOViewModel : MvxViewModel { public readonly ISearchWOService _serachwo; public SearchWOViewModel() { Filter = new FilterViewModel(_serachwo); Search = new SearchViewModel(_serachwo); }