Plugin Cordova - Navigation Bar
This repository has been archived on 2018-01-09. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
Michel Jautzy 57afebfa4e test 2017-06-23 16:00:01 +02:00
example test 2017-06-23 16:00:01 +02:00
src/android test 2017-06-23 16:00:01 +02:00
www test 2017-06-23 16:00:01 +02:00
LICENSE test 2017-06-23 16:00:01 +02:00
README.md test 2017-06-23 16:00:01 +02:00
package.json test 2017-06-23 16:00:01 +02:00
plugin.xml test 2017-06-23 16:00:01 +02:00

README.md

Cordova NavigationBar plugin

Overview

Hide and auto hide navigation bar.

[android] [cordova cli] [xdk] [cocoon] [phonegap build service]

This is open source cordova plugin.

You can see Cordova Plugins in one page: http://cranberrygame.github.io?referrer=github

Change log

Install plugin

Cordova cli

https://cordova.apache.org/docs/en/edge/guide_cli_index.md.html#The%20Command-Line%20Interface - npm install -g cordova@6.0.0

cordova plugin add cordova-plugin-navigationbar
(when build error, use github url: cordova plugin add https://github.com/cranberrygame/cordova-plugin-navigationbar)

Xdk

https://software.intel.com/en-us/intel-xdk - Download XDK - XDK PORJECTS - [specific project] - CORDOVA HYBRID MOBILE APP SETTINGS - Plugin Management - Add Plugins to this Project - Third Party Plugins -

Plugin Source: Cordova plugin registry
Plugin ID: cordova-plugin-navigationbar

## Cocoon ##
https://cocoon.io - Create project - [specific project] - Setting - Plugins - Custom - Git Url: https://github.com/cranberrygame/cordova-plugin-navigationbar.git - INSTALL - Save<br>

## Phonegap build service (config.xml) ##
https://build.phonegap.com/ - Apps - [specific project] - Update code - Zip file including config.xml
```c
<gap:plugin name="cordova-plugin-navigationbar" source="npm" />

Construct2

Download construct2 plugin
https://dl.dropboxusercontent.com/u/186681453/pluginsforcordova/index.html
How to install c2 native plugins in xdk, cocoon and cordova cli
https://plus.google.com/102658703990850475314/posts/XS5jjEApJYV

Server setting

API

document.addEventListener("deviceready", function(){
	var autoHideNavigationBar = false;
	window.navigationbar.setUp(autoHideNavigationBar);		
}, false);

window.navigationbar.hide();

Examples

example/basic/index.html
example/advanced/index.html

Test

Useful links

Cordova Plugins
http://cranberrygame.github.io?referrer=github

Credits