I have two screens which are linked to two tab buttons
- Name
- Duration
I would like tab to move to second button when I click Next button. In my view model this is my command for Next Button
Here is my code sample
public IMvxCommand NextCommand
{
get
{
return new MvxCommand(() => ShowViewModel<RecyclerViewModel>());
}
}
Rather than tab moving to next tab second view is opening in full screen.
Screens attached
First screen
Second screen
Screen I am seeing