@capgo/capacitor-navigation-bar 0.0.2 → 0.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,3 +1,9 @@
1
+ <a href="https://capgo.app/"><img src='https://raw.githubusercontent.com/Cap-go/capgo/main/assets/capgo_banner.png' alt='Capgo - Instant updates for capacitor'/></a>
2
+
3
+ <div align="center">
4
+ <h2><a href="https://capgo.app/">Check out: Capgo — Instant updates for capacitor</a></h2>
5
+ </div>
6
+
1
7
  # capacitor-navigation-bar
2
8
 
3
9
  Set navigation bar color for android lolipop and higher
@@ -5,7 +11,7 @@ Set navigation bar color for android lolipop and higher
5
11
  ## Install
6
12
 
7
13
  ```bash
8
- npm install capacitor-navigation-bar
14
+ npm install @capgo/capacitor-navigation-bar
9
15
  npx cap sync
10
16
  ```
11
17
 
@@ -4,5 +4,6 @@
4
4
  // Define the plugin using the CAP_PLUGIN Macro, and
5
5
  // each method the plugin supports using the CAP_PLUGIN_METHOD macro.
6
6
  CAP_PLUGIN(NavigationBarPlugin, "NavigationBar",
7
- CAP_PLUGIN_METHOD(echo, CAPPluginReturnPromise);
7
+ CAP_PLUGIN_METHOD(setNavigationBarColor, CAPPluginReturnPromise);
8
+ CAP_PLUGIN_METHOD(getNavigationBarColor, CAPPluginReturnPromise);
8
9
  )
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@capgo/capacitor-navigation-bar",
3
3
  "private": false,
4
- "version": "0.0.2",
4
+ "version": "0.0.4",
5
5
  "description": "Set navigation bar color for android lolipop and higher",
6
6
  "main": "dist/plugin.cjs.js",
7
7
  "module": "dist/esm/index.js",