Different text for More TabbedPage (language resources source) - xamarin

As you can see on link bellow, after xamarin forms update to 4.3, you are able to put more tabs into TabbedPage. If you have more than 5 tabs, xamarin will cut last 5th one and create own tab "More" where will be list for rest of your tabs.
But my application using different language resources and even after switching of lang.(when all app is switched into diff lang.) the text of More tab is still "More". I would like to change text of that time for diff.lang.resources from my app.
Can you help me with this issue?
Link for TabbedPage MoreTab

Related

Microsoft Teams multi-tab personal app - About tab placed between two application tabs

I have a Teams personal app that has two custom tabs, and generally the MS rendered About tab is appended to the end of the tab bar.
This has been working fine, but today a customer has found that the About tab is being placed in between the two application tabs.
Can anyone explain why, or possible solutions to get the About tab back into last position?
Seems to have resolved itself, putting it down to temporary glitch.

How to customize and display the round icon on click of bottom tab

I am working on bottom tabs in xamarin forms. I am looking for a sample application in xamarin forms for bottom tabs same as the in the video provided for android.
https://www.youtube.com/watch?v=Tz_il-BMaD0
Could anybody please help me with this task?
This nuget is helpful in customizing UI for tabs.
https://github.com/roubachof/Sharpnado.Tabs

How to allow Xamarin Forms TabbedPage to control the tabMode in Tabbar.axml for Android

I want to have different TabbedPages within my app with different tabModes.
IE:
TabbedPageOne with app:tabMode="scrollable"
TabbedPageTwo with app:tabMode="fixed"
This is currently possible? If not, how can it be achieved?
The setting can be easily changed app wide (How to make Tabbed page of many content page with a scroll menu in Xamarin forms?), but want it to be configurable per TabbedPage.

Add fixed bottom menu on Xamarin Forms with Prism MasterDetail

I'm using Xamarin Forms with Prism and I need to create a layout with a sidebar menu and a fixed bar at the bottom of the screen with quick actions like instagram app for iOS and Android.
I was thinking in use MasterDetail but how can I add that fixed bar at bottom of the Detail controller and keep it when detail page changes?
And the second thing is that I have a specific page that has form sections separated by tabs, so how can I render tabs at the top of the page for iOS (like Android)?
Something like this:

When I move to Fourth tab page from first one, It reloads every tab while it's moving!! on Xamarin.forms Android

I'm making app with using Xamarin.forms PCL.
I'm using Appcompat toolbar and tabs for Android.
It looks great but the problem is,
When I move to Fourth tab page from first one, It reloads every tabs while it's moving!! (2th, 3rd tab)
It causes big frame skip.
How can make it to slide to fourth tab without showing middle tabs?
I looked Youtube app, it does not seem to show middle tabs while it's moving.
That's native behaviour, it will pre-render nearby tabs; so for your instance, in Tab1, it renders Tab2, and when you go Tab 4, it also renders Tab3.
Similar questions are answered here
Fragment in TabLayout only load when user slide Android
Stop Android TabLayout loading next page automatically

Resources