| Name | Date | Size | #Lines | LOC | ||
|---|---|---|---|---|---|---|
| .. | 26-Sep-2023 | - | ||||
| android/ | H | 26-Sep-2023 | - | 791 | 618 | |
| build/ | H | 26-Sep-2023 | - | 504 | 171 | |
| plugin/ | H | 26-Sep-2023 | - | 697 | 582 | |
| src/ | H | 26-Sep-2023 | - | 357 | 149 | |
| .eslintrc.js | H A D | 26-Sep-2023 | 103 | 3 | 1 | |
| .npmignore | H A D | 26-Sep-2023 | 183 | 12 | 8 | |
| CHANGELOG.md | H A D | 26-Sep-2023 | 3.8 KiB | 112 | 57 | |
| README.md | H A D | 26-Sep-2023 | 1.5 KiB | 36 | 22 | |
| app.plugin.js | H A D | 26-Sep-2023 | 62 | 2 | 1 | |
| babel.config.js | H A D | 26-Sep-2023 | 107 | 7 | 6 | |
| expo-module.config.json | H A D | 26-Sep-2023 | 150 | 8 | 7 | |
| package.json | H A D | 26-Sep-2023 | 1.1 KiB | 47 | 46 | |
| tsconfig.json | H A D | 26-Sep-2023 | 217 | 10 | 9 |
README.md
1# expo-navigation-bar 2 3**`expo-navigation-bar`** enables you to modify and observe the native navigation bar on Android devices. Due to some Android platform restrictions, parts of this API overlap with the [`expo-status-bar`][status-bar] API. 4 5Properties are named after style properties; visibility, position, backgroundColor, borderColor, etc. 6 7## API documentation 8 9- [Documentation for the main branch][docs-main] 10- [Documentation for the latest stable release][docs-stable] 11 12## Installation in managed Expo projects 13 14For [managed][docs-workflows] Expo projects, please follow the installation instructions in the [API documentation for the latest stable release][docs-stable]. 15 16## Installation in bare React Native projects 17 18For bare React Native projects, you must ensure that you have [installed and configured the `react-native-unimodules` package][unimodules] before continuing. 19 20### Add the package to your npm dependencies 21 22``` 23npx expo install expo-navigation-bar 24``` 25 26## Contributing 27 28Contributions are very welcome! Please refer to guidelines described in the [contributing guide][contributing]. 29 30[docs-main]: https://github.com/expo/expo/blob/main/docs/pages/versions/unversioned/sdk/navigation-bar.mdx 31[docs-stable]: https://docs.expo.dev/versions/latest/sdk/navigation-bar/ 32[docs-workflows]: https://docs.expo.dev/archive/managed-vs-bare/ 33[contributing]: https://github.com/expo/expo#contributing 34[unimodules]: https://github.com/expo/expo/tree/main/packages/react-native-unimodules 35[status-bar]: https://github.com/expo/expo/tree/main/packages/expo-status-bar 36