You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Result: On Android, we will have Actionbar with the title the name of the application while on iOS there will be no ActionBar at all (no matter if the property is set or not).
As of version 4.x.x of tns-core-modules and NativeScript the porperty startPageActionBarHidden is no longer needed as there is no longer a Page instance created on bootstrap. Instead the first page instance is created for the default route.
So to hide the action bar on Android (on iOS we simply need to remove it from the HTML) we can get a Page instance in our default route and use actionBarHidden property.
The property
startPageActionBarHidden
is not working with [email protected] and [email protected]. The property as described here, use to hide the ActionBar on the landing pageSteps to reproduce:
main.ts
Result: On Android, we will have Actionbar with the title the name of the application while on iOS there will be no ActionBar at all (no matter if the property is set or not).
Test application here
Workaround:
Go to the landing page and hide the action bar though the Page instance from Di
The text was updated successfully, but these errors were encountered: