I had a similar question on how to change the font of the title which is here:
How can I change the Font Size and Weight for the Header in a Navigation Page?
Now I have that changed does anyone know how to also change the font size and weight for the top back arrow and the message that goes with it at the top of a navigation page? Seems like these are not part of the title as they have retained the original font size and weight.
Just click on any paragraph block, then select the font size under 'Typography' on the right-hand side. You can select from the drop-down, which covers Small, Normal, Medium, Large, and Huge.
On the Home tab, in the Environment section, click Preferences. Select MATLAB > Fonts and, in the Desktop code font section, select a font size. Specify the font size using font preferences.
If you choose Header, you can change the header size by clicking on the dropdown under Typography > Preset Size in the right-hand menu. You can also change the header tag by clicking H2 on the block menu that appears above the header.
I think this issue only occurs on iOS platform, so the solution is
Set UIBarButtonItem Appearance
in FinishedLaunching
in AppDelegate
UITextAttributes att = new UITextAttributes();
att.Font = UIFont.SystemFontOfSize(20.0 , FontAttributes.Bold); // size and weight
UIBarButtonItem.AppearanceWhenContainedIn(new Type[] { typeof( UINavigationBar) }).SetTitleTextAttributes(att, UIControlState.Normal);
UIBarButtonItem.AppearanceWhenContainedIn(new Type[] { typeof(UINavigationBar) }).SetTitleTextAttributes(att, UIControlState.Highlighted);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With