Awesome
<p align="center"><br><img src="https://user-images.githubusercontent.com/236501/85893648-1c92e880-b7a8-11ea-926d-95355b8175c7.png" width="128" height="128" /></p> <h3 align="center">Navigation Bar</h3> <p align="center"><strong><code>@hugotomazi/capacitor-navigation-bar</code></strong></p> <p align="center"> Capacitor plugin for Navigation Bar manipulation. </p> <p align="center"> <img src="https://img.shields.io/maintenance/yes/2024?style=flat-square" /> <a href="https://github.com/hugotomazi/navigation-bar/actions?query=workflow%3A%22CI%22"><img src="https://img.shields.io/github/workflow/status/hugotomazi/navigation-bar/CI/master?style=flat-square" /></a> <a href="https://www.npmjs.com/package/@hugotomazi/capacitor-navigation-bar"><img src="https://img.shields.io/npm/l/@hugotomazi/capacitor-navigation-bar?style=flat-square" /></a> <br> <a href="https://www.npmjs.com/package/@hugotomazi/capacitor-navigation-bar"><img src="https://img.shields.io/npm/dw/@hugotomazi/capacitor-navigation-bar?style=flat-square" /></a> <a href="https://www.npmjs.com/package/@hugotomazi/capacitor-navigation-bar"><img src="https://img.shields.io/npm/v/@hugotomazi/capacitor-navigation-bar?style=flat-square" /></a> <!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section --> <a href="#contributors-"><img src="https://img.shields.io/badge/all%20contributors-5-orange?style=flat-square" /></a> <!-- ALL-CONTRIBUTORS-BADGE:END --> <br/> <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=F9VPVZKHK4SZW"> <img src="https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif" alt="Donate with PayPal button"> </a> </p> <br/> <p align="center"> <img height="450" src="https://github.com/hugotomazi/navigation-bar/blob/master/demoProject/src/assets/example.gif?raw=true"> </p>Maintainers
Maintainer | GitHub | Social |
---|---|---|
Hugo Tomazi | hugotomazi | @hugotomazi |
Install
npm install @hugotomazi/capacitor-navigation-bar
npx cap sync
Configuration
No configuration required for this plugin.
API
<docgen-index>show()
hide()
setColor(...)
setTransparency(...)
getColor()
addListener(...)
addListener(...)
addListener(...)
- Interfaces
- Enums
show()
show() => Promise<void>
Display the navigation bar.
hide()
hide() => Promise<void>
Hide the navigation bar.
setColor(...)
setColor(options: ColorParameters) => Promise<void>
Change the color of the navigation bar. *Support alpha hexadecimal numbers.
Param | Type |
---|---|
options | <code><a href="#colorparameters">ColorParameters</a></code> |
setTransparency(...)
setTransparency(options: { isTransparent: boolean; }) => Promise<void>
Set the Transparency
Param | Type |
---|---|
options | <code>{ isTransparent: boolean; }</code> |
getColor()
getColor() => Promise<{ color: string; }>
Gets the current color of the navigation bar in Hexadecimal.
Returns: <code>Promise<{ color: string; }></code>
addListener(...)
addListener(event: NavigationBarPluginEvents.SHOW, listenerFunc: () => void) => Promise<PluginListenerHandle>
Event fired after navigation bar is displayed
Param | Type | Description |
---|---|---|
event | <code><a href="#navigationbarpluginevents">NavigationBarPluginEvents.SHOW</a></code> | The event |
listenerFunc | <code>() => void</code> | Callback |
Returns: <code>Promise<<a href="#pluginlistenerhandle">PluginListenerHandle</a>></code>
addListener(...)
addListener(event: NavigationBarPluginEvents.HIDE, listenerFunc: () => void) => Promise<PluginListenerHandle>
Event fired after navigation bar is hidden
Param | Type | Description |
---|---|---|
event | <code><a href="#navigationbarpluginevents">NavigationBarPluginEvents.HIDE</a></code> | The event |
listenerFunc | <code>() => void</code> | Callback |
Returns: <code>Promise<<a href="#pluginlistenerhandle">PluginListenerHandle</a>></code>
addListener(...)
addListener(event: NavigationBarPluginEvents.COLOR_CHANGE, listenerFunc: (returnObject: { color: string; }) => void) => Promise<PluginListenerHandle>
Event fired after navigation bar color is changed
Param | Type | Description |
---|---|---|
event | <code><a href="#navigationbarpluginevents">NavigationBarPluginEvents.COLOR_CHANGE</a></code> | The event |
listenerFunc | <code>(returnObject: { color: string; }) => void</code> | Callback |
Returns: <code>Promise<<a href="#pluginlistenerhandle">PluginListenerHandle</a>></code>
Interfaces
ColorParameters
Prop | Type | Description |
---|---|---|
color | <code>string</code> | Sets the new color of the navigation bar. |
darkButtons | <code>boolean</code> | Sets whether the default navigation bar buttons should be black or white. |
PluginListenerHandle
Prop | Type |
---|---|
remove | <code>() => Promise<void></code> |
Enums
NavigationBarPluginEvents
Members | Value | Description |
---|---|---|
SHOW | <code>'onShow'</code> | Called after the navigation bar is displayed |
HIDE | <code>'onHide'</code> | Called after navigation bar is hidden |
COLOR_CHANGE | <code>'onColorChange'</code> | Called after navigation bar color is changed |