Getting Started
复制一个包含安装步骤和本插件的完整Markdown指南的设置提示。
Set up this Capacitor plugin in the project.
Use the package manager already used by the project.
Install these package(s): `@capgo/capacitor-navigation-bar`
Run the required Capacitor sync/update step after installation.
Read this markdown guide for the full setup steps: https://raw.githubusercontent.com/Cap-go/website/refs/heads/main/apps/docs/src/content/docs/docs/plugins/navigation-bar/getting-started.mdx
Use that guide for platform-specific steps, native file edits, permissions, config changes, imports, and usage setup.
If that guide references other docs pages, read them too.
您可以使用我们的 AI 助手设置来安装插件。使用以下命令将 Capgo 技能添加到您的 AI 工具中:
npx skills add https://github.com/Cap-go/capgo-skills --skill capacitor-plugins然后使用以下提示:
Use the `capacitor-plugins` skill from `Cap-go/capgo-skills` to install the `@capgo/capacitor-navigation-bar` plugin in my project.如果您更喜欢手动设置,请按照以下命令安装插件并遵循以下平台特定的说明:
bun add @capgo/capacitor-navigation-barbunx cap sync导入
导入部分import { NavigationBar } from '@capgo/capacitor-navigation-bar';API概述
API概述部分setNavigationBarColor
设置导航栏颜色和按钮主题设置导航栏颜色和按钮主题
import { NavigationBar } from '@capgo/capacitor-navigation-bar';
// Set to white with dark buttonsawait NavigationBar.setNavigationBarColor({ color: NavigationBarColor.WHITE, darkButtons: true});
// Set to custom colorawait NavigationBar.setNavigationBarColor({ color: '#FF5733', darkButtons: false});
// Set a custom divider color on Android 9+await NavigationBar.setNavigationBarColor({ color: NavigationBarColor.WHITE, darkButtons: true, dividerColor: '#D9D9D9'});getNavigationBarColor
设置导航栏颜色和按钮主题部分获取当前导航栏颜色和按钮主题
import { NavigationBar } from '@capgo/capacitor-navigation-bar';
const { color, darkButtons } = await NavigationBar.getNavigationBarColor();console.log('Current color:', color);console.log('Using dark buttons:', darkButtons);类型参考
类型参考NavigationBarColor
导航栏颜色预定义导航栏颜色。复制到剪贴板
export enum NavigationBarColor { /** White color */ WHITE = '#FFFFFF', /** Black color */ BLACK = '#000000', /** Transparent color */ TRANSPARENT = 'transparent',}源代码真相
此页面由插件生成。重新同步公共__CAPGO_KEEP_0__时,请重新运行。 src/definitions.ts. Re-run the sync when the public API changes upstream.
继续从开始
继续从开始如果您正在使用 开始 为了规划原生媒体和界面行为,连接它与 使用@capgo/capacitor-导航栏 为原生能力在使用@capgo/capacitor-导航栏中 使用@capgo/capacitor-实时活动 为原生能力在使用@capgo/capacitor-实时活动中 @capgo/capacitor-实时活动 为@capgo/capacitor-实时活动的实现细节 使用@capgo/capacitor-视频播放器 为原生能力在使用@capgo/capacitor-视频播放器中,并且 @capgo/capacitor-视频播放器 关于@capgo/capacitor-视频播放器的实现细节。