# NavBarExist **Repository Path**: zackratos/NavBarExist ## Basic Information - **Project Name**: NavBarExist - **Description**: No description available - **Primary Language**: Android - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-08-23 - **Last Updated**: 2021-08-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # NavBarExist [![](https://jitpack.io/v/com.gitee.zackratos/NavBarExist.svg)](https://jitpack.io/#com.gitee.zackratos/NavBarExist) ### 介绍 判断导航栏是否存在的方法 ### 使用 Step 1. Add the JitPack repository to your build file ```groovy allprojects { repositories { ... maven { url 'https://jitpack.io' } } } ``` Step 2. Add the dependency ```groovy dependencies { implementation 'com.gitee.zackratos:NavBarExist:$lastVersion' } ``` Step 3. Use in Activity ```kotlin navBarExist { Log.d(TAG, "navBarExist == $it") } navBarHeight { Log.d(TAG, "navBarHeight == $it") } ```