Home  >  Article  >  Web Front-end  >  How to not display the navigation bar in uniapp

How to not display the navigation bar in uniapp

藏色散人
藏色散人Original
2020-12-16 17:35:3810285browse

Methods for uniapp not to display the navigation bar: 1. Remove all navigation bars through the code ""globalStyle": {...}" method; 2. By configuring ""app-plus" in pages.json :{"titleNView":false}" to remove the top navigation bar from a single page.

How to not display the navigation bar in uniapp

The operating environment of this tutorial: windows7 system, uni-app2.5.1 version. This method is suitable for all brands of computers.

Recommended (free): uni-app development tutorial

uniapp removes the top title

1. Remove all navigation bars

	"globalStyle": {
		"navigationBarTextStyle": "white",
		"navigationBarTitleText": "uni-app",
		"navigationBarBackgroundColor": "#007AFF",
		"backgroundColor": "#FFFFFF",
		"navigationStyle":"custom",
		"app-plus":{
			"titleView":false
		}
	}

2. Remove the top navigation bar from a single page

Configure in pages.json:

"style": {
				"navigationBarTitleText": "库管系统",
				"navigationStyle":"custom",
				"app-plus":{
					"titleNView":false
				}
			}

The above is the detailed content of How to not display the navigation bar in uniapp. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn