├── .gitignore ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── example │ │ └── sagar │ │ └── navigationuidemo │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── sagar │ │ │ └── navigationuidemo │ │ │ ├── BottomNavFragment.kt │ │ │ ├── BottomNavFragmentOne.kt │ │ │ ├── BottomNavFragmentThree.kt │ │ │ ├── BottomNavFragmentTwo.kt │ │ │ ├── InfoFragment.kt │ │ │ └── MainActivity.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── ic_android_black_24dp.xml │ │ ├── ic_exposure_plus_1_black_24dp.xml │ │ ├── ic_exposure_plus_2_black_24dp.xml │ │ ├── ic_home_black_24dp.xml │ │ ├── ic_launcher_background.xml │ │ ├── jetpack_chart.png │ │ ├── jetpack_logo.png │ │ ├── jetpack_logo_1.png │ │ └── jetpack_logo_small.png │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── fragment_bottom_nav.xml │ │ ├── fragment_bottom_nav_fragment_one.xml │ │ ├── fragment_bottom_nav_fragment_three.xml │ │ ├── fragment_bottom_nav_fragment_two.xml │ │ ├── fragment_info.xml │ │ └── nav_header.xml │ │ ├── menu │ │ ├── bottom_navigation_menu.xml │ │ └── menu_navigation.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── navigation │ │ ├── nav_main.xml │ │ └── nav_secondary.xml │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── example │ └── sagar │ └── navigationuidemo │ └── ExampleUnitTest.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── screenshots ├── app_screenshot_five.png ├── app_screenshot_four.png ├── app_screenshot_one.png ├── app_screenshot_three.png └── app_screenshot_two.png └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/example/sagar/navigationuidemo/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/app/src/androidTest/java/com/example/sagar/navigationuidemo/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/example/sagar/navigationuidemo/BottomNavFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/app/src/main/java/com/example/sagar/navigationuidemo/BottomNavFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/sagar/navigationuidemo/BottomNavFragmentOne.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/app/src/main/java/com/example/sagar/navigationuidemo/BottomNavFragmentOne.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/sagar/navigationuidemo/BottomNavFragmentThree.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/app/src/main/java/com/example/sagar/navigationuidemo/BottomNavFragmentThree.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/sagar/navigationuidemo/BottomNavFragmentTwo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/app/src/main/java/com/example/sagar/navigationuidemo/BottomNavFragmentTwo.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/sagar/navigationuidemo/InfoFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/app/src/main/java/com/example/sagar/navigationuidemo/InfoFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/sagar/navigationuidemo/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/app/src/main/java/com/example/sagar/navigationuidemo/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_android_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/app/src/main/res/drawable/ic_android_black_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_exposure_plus_1_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/app/src/main/res/drawable/ic_exposure_plus_1_black_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_exposure_plus_2_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/app/src/main/res/drawable/ic_exposure_plus_2_black_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_home_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/app/src/main/res/drawable/ic_home_black_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/jetpack_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/app/src/main/res/drawable/jetpack_chart.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/jetpack_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/app/src/main/res/drawable/jetpack_logo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/jetpack_logo_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/app/src/main/res/drawable/jetpack_logo_1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/jetpack_logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/app/src/main/res/drawable/jetpack_logo_small.png -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_bottom_nav.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/app/src/main/res/layout/fragment_bottom_nav.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_bottom_nav_fragment_one.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/app/src/main/res/layout/fragment_bottom_nav_fragment_one.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_bottom_nav_fragment_three.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/app/src/main/res/layout/fragment_bottom_nav_fragment_three.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_bottom_nav_fragment_two.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/app/src/main/res/layout/fragment_bottom_nav_fragment_two.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/app/src/main/res/layout/fragment_info.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/nav_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/app/src/main/res/layout/nav_header.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/bottom_navigation_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/app/src/main/res/menu/bottom_navigation_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_navigation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/app/src/main/res/menu/menu_navigation.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/navigation/nav_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/app/src/main/res/navigation/nav_main.xml -------------------------------------------------------------------------------- /app/src/main/res/navigation/nav_secondary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/app/src/main/res/navigation/nav_secondary.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/example/sagar/navigationuidemo/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/app/src/test/java/com/example/sagar/navigationuidemo/ExampleUnitTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/gradlew.bat -------------------------------------------------------------------------------- /screenshots/app_screenshot_five.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/screenshots/app_screenshot_five.png -------------------------------------------------------------------------------- /screenshots/app_screenshot_four.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/screenshots/app_screenshot_four.png -------------------------------------------------------------------------------- /screenshots/app_screenshot_one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/screenshots/app_screenshot_one.png -------------------------------------------------------------------------------- /screenshots/app_screenshot_three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/screenshots/app_screenshot_three.png -------------------------------------------------------------------------------- /screenshots/app_screenshot_two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagar-viradiya/NavigationUIDemo/HEAD/screenshots/app_screenshot_two.png -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------