From 1a0e54b7195126e09d79f38f112c1d826a719077 Mon Sep 17 00:00:00 2001 From: Shane Rosenthal Date: Sat, 29 Nov 2025 11:38:08 -0500 Subject: [PATCH 1/3] Fix top bar nav docs --- resources/views/docs/mobile/2/edge-components/top-bar.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/resources/views/docs/mobile/2/edge-components/top-bar.md b/resources/views/docs/mobile/2/edge-components/top-bar.md index e295cf5d..ed0b3639 100644 --- a/resources/views/docs/mobile/2/edge-components/top-bar.md +++ b/resources/views/docs/mobile/2/edge-components/top-bar.md @@ -19,12 +19,14 @@ A top bar with title and action buttons. This renders at the top of the screen. @@ -35,6 +37,7 @@ A top bar with title and action buttons. This renders at the top of the screen. - `title` - The title text - `show-navigation-icon` - Show back/menu button (optional, default: `true`) +- `label` - If more than 3 actions, iOS will display an overflow menu and the labels assigned to each item - `background-color` - Background color. Hex code (optional) - `text-color` - Text color. Hex code (optional) - `elevation` - Shadow depth 0-24 (optional) [Android] From b5048b60c6c1264277abe6acf6a62fb50c422067 Mon Sep 17 00:00:00 2001 From: Shane Rosenthal Date: Sat, 29 Nov 2025 12:02:15 -0500 Subject: [PATCH 2/3] Updates native functions doc --- resources/views/docs/mobile/2/the-basics/native-functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/docs/mobile/2/the-basics/native-functions.md b/resources/views/docs/mobile/2/the-basics/native-functions.md index 4a8f2541..75738c02 100644 --- a/resources/views/docs/mobile/2/the-basics/native-functions.md +++ b/resources/views/docs/mobile/2/the-basics/native-functions.md @@ -49,7 +49,7 @@ section to the JSON: } ``` -Then in your JavaScript, simply import the relevant functions from the plugin: +Run `npm install`, then in your JavaScript, simply import the relevant functions from the plugin: ```js import { on, off, Microphone, Events } from '#nativephp'; From 59f6c625b997bca86ba2c9120197f6cd481392f8 Mon Sep 17 00:00:00 2001 From: Shane Rosenthal Date: Sat, 29 Nov 2025 12:25:42 -0500 Subject: [PATCH 3/3] 5, not 3 --- resources/views/docs/mobile/2/edge-components/top-bar.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/docs/mobile/2/edge-components/top-bar.md b/resources/views/docs/mobile/2/edge-components/top-bar.md index ed0b3639..56069551 100644 --- a/resources/views/docs/mobile/2/edge-components/top-bar.md +++ b/resources/views/docs/mobile/2/edge-components/top-bar.md @@ -37,7 +37,7 @@ A top bar with title and action buttons. This renders at the top of the screen. - `title` - The title text - `show-navigation-icon` - Show back/menu button (optional, default: `true`) -- `label` - If more than 3 actions, iOS will display an overflow menu and the labels assigned to each item +- `label` - If more than 5 actions, iOS will display an overflow menu and the labels assigned to each item - `background-color` - Background color. Hex code (optional) - `text-color` - Text color. Hex code (optional) - `elevation` - Shadow depth 0-24 (optional) [Android]