Top Navigation Bar
A native Top Navigation Bar can be used to help your users navigate throughout your app. You can display dynamic titles depending on the page being shown. You may also add a search bar form, refresh functionality, and custom buttons. When a Sidebar Navigation Menu is also enabled, a "hamburger" toggle button is shown in the top nav bar to easily open the menu.
Developer Demo
Display our demo page in your app to test during development https://median.dev/top-navigation-bar/
The top navigation bar is only visible if you are using Sidebar Navigation, Auto New Windows, Search, Refresh Button, or Custom Buttons.
Example

iOS Top Navigation Bar

Android Top Navigation Bar
Frequently Asked Questions
How do I change the title text in the top navigation bar
You can add the following to each page for which you wish to set a title.
<script>
function median_library_ready(){
median.navigationTitles.setCurrent({'title':'Your Title'});
}
</script>
For more details refer to Dynamic Titles.
Updated 29 days ago