'Xamarin.Forms Bottom Menu for Android
I managed to show menu bar on bottom on Android. I followed this guide exactly : https://asyncawait.wordpress.com/2016/06/16/bottom-menu-for-xamarin-forms-android/#more-24
My issue is that I am working on a RTL (Right to Left) Language app, so I want to show the last tab as the default activated tab on load. So I changed the following in PopulateChildren Method:
LoadPageContent(0);
To:
LoadPageContent(3); //I have total 4 pages (0,1,2,3)
Now the last page is loaded by default but the Selected color of the tab is still on the first tab. 
(source: cubeupload.com)
I want to show the selected tab color on the last page. How can I do it??
Solution 1:[1]
Set CurrentPage={Your Last Page Here} in the TabbedPage constructor.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Nick Kovalsky |
