├── .github └── workflows │ └── compose.yml ├── .gitignore ├── README.md ├── app ├── .gitignore ├── build.gradle ├── google-services.json ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── himanshoe │ │ └── photos │ │ ├── MainActivity.kt │ │ ├── PhotoApp.kt │ │ ├── di │ │ └── NetworkModule.kt │ │ └── util │ │ └── Font.kt │ └── res │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable │ └── ic_launcher_background.xml │ ├── layout │ └── main_activity.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 │ └── app.xml │ └── values │ ├── colors.xml │ ├── strings.xml │ └── styles.xml ├── art ├── 1splash.png ├── 2login.png ├── 3.1doubletab.png ├── 3landing.png ├── 4profile.png └── 5editprofile.png ├── core ├── .gitignore ├── build.gradle ├── consumer-rules.pro ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── himanshoe │ │ └── core │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── himanshoe │ │ │ └── core │ │ │ ├── base │ │ │ ├── BaseComposable.kt │ │ │ ├── IBaseRepository.kt │ │ │ ├── IBaseUseCase.kt │ │ │ └── IBaseViewModel.kt │ │ │ ├── common │ │ │ └── CoilImage.kt │ │ │ ├── data │ │ │ └── local │ │ │ │ ├── datastore │ │ │ │ ├── DataStoreProvider.kt │ │ │ │ ├── IDataStoreProvider.kt │ │ │ │ ├── PreferenceInitializer.kt │ │ │ │ └── store │ │ │ │ │ └── AppConfig.kt │ │ │ │ └── session │ │ │ │ ├── ISessionManager.kt │ │ │ │ └── SessionManager.kt │ │ │ ├── di │ │ │ ├── NavigatorProvider.kt │ │ │ ├── NetworkModule.kt │ │ │ └── SessionModule.kt │ │ │ ├── extension │ │ │ └── ComposableExt.kt │ │ │ ├── model │ │ │ └── User.kt │ │ │ ├── navigator │ │ │ ├── NavOptionsBuilderExt.kt │ │ │ ├── NavigateTo.kt │ │ │ ├── Navigator.kt │ │ │ └── event │ │ │ │ └── Event.kt │ │ │ └── util │ │ │ ├── Font.kt │ │ │ ├── IResult.kt │ │ │ ├── NetworkHelper.kt │ │ │ └── validator │ │ │ └── Validator.kt │ └── res │ │ ├── anim │ │ ├── accelerate_quart.xml │ │ ├── decelerate_quart.xml │ │ ├── fragment_enter.xml │ │ ├── fragment_exit.xml │ │ ├── fragment_fade_enter.xml │ │ ├── fragment_fade_exit.xml │ │ ├── fragment_pop_enter.xml │ │ ├── fragment_pop_exit.xml │ │ ├── fragment_slide_down.xml │ │ └── fragment_slide_up.xml │ │ └── font │ │ ├── nunito_bold.ttf │ │ └── nunito_regular.ttf │ └── test │ └── java │ └── com │ └── himanshoe │ └── core │ └── ExampleUnitTest.kt ├── dependency.gradle ├── feature ├── landing │ ├── .gitignore │ ├── build.gradle │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── himanshoe │ │ │ └── landing │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── himanshoe │ │ │ │ └── landing │ │ │ │ ├── data │ │ │ │ ├── apiHelper │ │ │ │ │ ├── IPhotoRepository.kt │ │ │ │ │ ├── PhotoApiService.kt │ │ │ │ │ ├── PhotoRepository.kt │ │ │ │ │ └── PhotoSource.kt │ │ │ │ └── response │ │ │ │ │ └── PhotoResponse.kt │ │ │ │ ├── deeplink │ │ │ │ └── LandingDeeplink.kt │ │ │ │ ├── di │ │ │ │ ├── RepositoryModule.kt │ │ │ │ └── ServiceModule.kt │ │ │ │ ├── domain │ │ │ │ └── GetPhotosUseCase.kt │ │ │ │ └── ui │ │ │ │ ├── LandingFragment.kt │ │ │ │ ├── LandingNavigator.kt │ │ │ │ ├── LandingViewModel.kt │ │ │ │ └── composable │ │ │ │ ├── MovieComposable.kt │ │ │ │ └── ProfileComposable.kt │ │ └── res │ │ │ ├── layout │ │ │ └── landing_fragment.xml │ │ │ ├── navigation │ │ │ └── landing_navigation.xml │ │ │ └── values │ │ │ └── strings.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── himanshoe │ │ └── landing │ │ └── ExampleUnitTest.kt ├── login │ ├── .gitignore │ ├── build.gradle │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── himanshoe │ │ │ └── login │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── himanshoe │ │ │ │ └── login │ │ │ │ └── ui │ │ │ │ ├── LoginDeeplink.kt │ │ │ │ ├── LoginFragment.kt │ │ │ │ ├── LoginViewModel.kt │ │ │ │ └── composable │ │ │ │ └── LoginComposables.kt │ │ └── res │ │ │ ├── navigation │ │ │ └── login_navigation.xml │ │ │ └── values │ │ │ └── strings.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── himanshoe │ │ └── login │ │ └── ExampleUnitTest.kt ├── profile │ ├── .gitignore │ ├── build.gradle │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── himanshoe │ │ │ └── profile │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── himanshoe │ │ │ │ └── profile │ │ │ │ ├── EditProfileComposable.kt │ │ │ │ ├── EditProfileFragment.kt │ │ │ │ └── EditProfileViewModel.kt │ │ └── res │ │ │ └── navigation │ │ │ └── profile_navigation.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── himanshoe │ │ └── profile │ │ └── ExampleUnitTest.kt └── splash │ ├── .gitignore │ ├── build.gradle │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── himanshoe │ │ └── splash │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── himanshoe │ │ │ └── splash │ │ │ ├── SplashDeeplink.kt │ │ │ ├── SplashFragment.kt │ │ │ ├── SplashViewModel.kt │ │ │ └── composables │ │ │ ├── LogoState.kt │ │ │ ├── SplashComposable.kt │ │ │ └── keys.kt │ └── res │ │ ├── drawable │ │ └── splash_image.webp │ │ └── navigation │ │ └── splash.xml │ └── test │ └── java │ └── com │ └── himanshoe │ └── splash │ └── ExampleUnitTest.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.github/workflows/compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/.github/workflows/compose.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/app/google-services.json -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/himanshoe/photos/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/app/src/main/java/com/himanshoe/photos/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/himanshoe/photos/PhotoApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/app/src/main/java/com/himanshoe/photos/PhotoApp.kt -------------------------------------------------------------------------------- /app/src/main/java/com/himanshoe/photos/di/NetworkModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/app/src/main/java/com/himanshoe/photos/di/NetworkModule.kt -------------------------------------------------------------------------------- /app/src/main/java/com/himanshoe/photos/util/Font.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/app/src/main/java/com/himanshoe/photos/util/Font.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/main_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/app/src/main/res/layout/main_activity.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/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/hi-manshu/ComposePictures/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/hi-manshu/ComposePictures/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/navigation/app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/app/src/main/res/navigation/app.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /art/1splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/art/1splash.png -------------------------------------------------------------------------------- /art/2login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/art/2login.png -------------------------------------------------------------------------------- /art/3.1doubletab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/art/3.1doubletab.png -------------------------------------------------------------------------------- /art/3landing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/art/3landing.png -------------------------------------------------------------------------------- /art/4profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/art/4profile.png -------------------------------------------------------------------------------- /art/5editprofile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/art/5editprofile.png -------------------------------------------------------------------------------- /core/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/core/build.gradle -------------------------------------------------------------------------------- /core/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/core/proguard-rules.pro -------------------------------------------------------------------------------- /core/src/androidTest/java/com/himanshoe/core/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/core/src/androidTest/java/com/himanshoe/core/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /core/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/core/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /core/src/main/java/com/himanshoe/core/base/BaseComposable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/core/src/main/java/com/himanshoe/core/base/BaseComposable.kt -------------------------------------------------------------------------------- /core/src/main/java/com/himanshoe/core/base/IBaseRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/core/src/main/java/com/himanshoe/core/base/IBaseRepository.kt -------------------------------------------------------------------------------- /core/src/main/java/com/himanshoe/core/base/IBaseUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/core/src/main/java/com/himanshoe/core/base/IBaseUseCase.kt -------------------------------------------------------------------------------- /core/src/main/java/com/himanshoe/core/base/IBaseViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/core/src/main/java/com/himanshoe/core/base/IBaseViewModel.kt -------------------------------------------------------------------------------- /core/src/main/java/com/himanshoe/core/common/CoilImage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/core/src/main/java/com/himanshoe/core/common/CoilImage.kt -------------------------------------------------------------------------------- /core/src/main/java/com/himanshoe/core/data/local/datastore/DataStoreProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/core/src/main/java/com/himanshoe/core/data/local/datastore/DataStoreProvider.kt -------------------------------------------------------------------------------- /core/src/main/java/com/himanshoe/core/data/local/datastore/IDataStoreProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/core/src/main/java/com/himanshoe/core/data/local/datastore/IDataStoreProvider.kt -------------------------------------------------------------------------------- /core/src/main/java/com/himanshoe/core/data/local/datastore/PreferenceInitializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/core/src/main/java/com/himanshoe/core/data/local/datastore/PreferenceInitializer.kt -------------------------------------------------------------------------------- /core/src/main/java/com/himanshoe/core/data/local/datastore/store/AppConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/core/src/main/java/com/himanshoe/core/data/local/datastore/store/AppConfig.kt -------------------------------------------------------------------------------- /core/src/main/java/com/himanshoe/core/data/local/session/ISessionManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/core/src/main/java/com/himanshoe/core/data/local/session/ISessionManager.kt -------------------------------------------------------------------------------- /core/src/main/java/com/himanshoe/core/data/local/session/SessionManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/core/src/main/java/com/himanshoe/core/data/local/session/SessionManager.kt -------------------------------------------------------------------------------- /core/src/main/java/com/himanshoe/core/di/NavigatorProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/core/src/main/java/com/himanshoe/core/di/NavigatorProvider.kt -------------------------------------------------------------------------------- /core/src/main/java/com/himanshoe/core/di/NetworkModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/core/src/main/java/com/himanshoe/core/di/NetworkModule.kt -------------------------------------------------------------------------------- /core/src/main/java/com/himanshoe/core/di/SessionModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/core/src/main/java/com/himanshoe/core/di/SessionModule.kt -------------------------------------------------------------------------------- /core/src/main/java/com/himanshoe/core/extension/ComposableExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/core/src/main/java/com/himanshoe/core/extension/ComposableExt.kt -------------------------------------------------------------------------------- /core/src/main/java/com/himanshoe/core/model/User.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/core/src/main/java/com/himanshoe/core/model/User.kt -------------------------------------------------------------------------------- /core/src/main/java/com/himanshoe/core/navigator/NavOptionsBuilderExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/core/src/main/java/com/himanshoe/core/navigator/NavOptionsBuilderExt.kt -------------------------------------------------------------------------------- /core/src/main/java/com/himanshoe/core/navigator/NavigateTo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/core/src/main/java/com/himanshoe/core/navigator/NavigateTo.kt -------------------------------------------------------------------------------- /core/src/main/java/com/himanshoe/core/navigator/Navigator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/core/src/main/java/com/himanshoe/core/navigator/Navigator.kt -------------------------------------------------------------------------------- /core/src/main/java/com/himanshoe/core/navigator/event/Event.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/core/src/main/java/com/himanshoe/core/navigator/event/Event.kt -------------------------------------------------------------------------------- /core/src/main/java/com/himanshoe/core/util/Font.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/core/src/main/java/com/himanshoe/core/util/Font.kt -------------------------------------------------------------------------------- /core/src/main/java/com/himanshoe/core/util/IResult.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/core/src/main/java/com/himanshoe/core/util/IResult.kt -------------------------------------------------------------------------------- /core/src/main/java/com/himanshoe/core/util/NetworkHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/core/src/main/java/com/himanshoe/core/util/NetworkHelper.kt -------------------------------------------------------------------------------- /core/src/main/java/com/himanshoe/core/util/validator/Validator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/core/src/main/java/com/himanshoe/core/util/validator/Validator.kt -------------------------------------------------------------------------------- /core/src/main/res/anim/accelerate_quart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/core/src/main/res/anim/accelerate_quart.xml -------------------------------------------------------------------------------- /core/src/main/res/anim/decelerate_quart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/core/src/main/res/anim/decelerate_quart.xml -------------------------------------------------------------------------------- /core/src/main/res/anim/fragment_enter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/core/src/main/res/anim/fragment_enter.xml -------------------------------------------------------------------------------- /core/src/main/res/anim/fragment_exit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/core/src/main/res/anim/fragment_exit.xml -------------------------------------------------------------------------------- /core/src/main/res/anim/fragment_fade_enter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/core/src/main/res/anim/fragment_fade_enter.xml -------------------------------------------------------------------------------- /core/src/main/res/anim/fragment_fade_exit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/core/src/main/res/anim/fragment_fade_exit.xml -------------------------------------------------------------------------------- /core/src/main/res/anim/fragment_pop_enter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/core/src/main/res/anim/fragment_pop_enter.xml -------------------------------------------------------------------------------- /core/src/main/res/anim/fragment_pop_exit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/core/src/main/res/anim/fragment_pop_exit.xml -------------------------------------------------------------------------------- /core/src/main/res/anim/fragment_slide_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/core/src/main/res/anim/fragment_slide_down.xml -------------------------------------------------------------------------------- /core/src/main/res/anim/fragment_slide_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/core/src/main/res/anim/fragment_slide_up.xml -------------------------------------------------------------------------------- /core/src/main/res/font/nunito_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/core/src/main/res/font/nunito_bold.ttf -------------------------------------------------------------------------------- /core/src/main/res/font/nunito_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/core/src/main/res/font/nunito_regular.ttf -------------------------------------------------------------------------------- /core/src/test/java/com/himanshoe/core/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/core/src/test/java/com/himanshoe/core/ExampleUnitTest.kt -------------------------------------------------------------------------------- /dependency.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/dependency.gradle -------------------------------------------------------------------------------- /feature/landing/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /feature/landing/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/landing/build.gradle -------------------------------------------------------------------------------- /feature/landing/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /feature/landing/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/landing/proguard-rules.pro -------------------------------------------------------------------------------- /feature/landing/src/androidTest/java/com/himanshoe/landing/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/landing/src/androidTest/java/com/himanshoe/landing/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /feature/landing/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/landing/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /feature/landing/src/main/java/com/himanshoe/landing/data/apiHelper/IPhotoRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/landing/src/main/java/com/himanshoe/landing/data/apiHelper/IPhotoRepository.kt -------------------------------------------------------------------------------- /feature/landing/src/main/java/com/himanshoe/landing/data/apiHelper/PhotoApiService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/landing/src/main/java/com/himanshoe/landing/data/apiHelper/PhotoApiService.kt -------------------------------------------------------------------------------- /feature/landing/src/main/java/com/himanshoe/landing/data/apiHelper/PhotoRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/landing/src/main/java/com/himanshoe/landing/data/apiHelper/PhotoRepository.kt -------------------------------------------------------------------------------- /feature/landing/src/main/java/com/himanshoe/landing/data/apiHelper/PhotoSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/landing/src/main/java/com/himanshoe/landing/data/apiHelper/PhotoSource.kt -------------------------------------------------------------------------------- /feature/landing/src/main/java/com/himanshoe/landing/data/response/PhotoResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/landing/src/main/java/com/himanshoe/landing/data/response/PhotoResponse.kt -------------------------------------------------------------------------------- /feature/landing/src/main/java/com/himanshoe/landing/deeplink/LandingDeeplink.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/landing/src/main/java/com/himanshoe/landing/deeplink/LandingDeeplink.kt -------------------------------------------------------------------------------- /feature/landing/src/main/java/com/himanshoe/landing/di/RepositoryModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/landing/src/main/java/com/himanshoe/landing/di/RepositoryModule.kt -------------------------------------------------------------------------------- /feature/landing/src/main/java/com/himanshoe/landing/di/ServiceModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/landing/src/main/java/com/himanshoe/landing/di/ServiceModule.kt -------------------------------------------------------------------------------- /feature/landing/src/main/java/com/himanshoe/landing/domain/GetPhotosUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/landing/src/main/java/com/himanshoe/landing/domain/GetPhotosUseCase.kt -------------------------------------------------------------------------------- /feature/landing/src/main/java/com/himanshoe/landing/ui/LandingFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/landing/src/main/java/com/himanshoe/landing/ui/LandingFragment.kt -------------------------------------------------------------------------------- /feature/landing/src/main/java/com/himanshoe/landing/ui/LandingNavigator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/landing/src/main/java/com/himanshoe/landing/ui/LandingNavigator.kt -------------------------------------------------------------------------------- /feature/landing/src/main/java/com/himanshoe/landing/ui/LandingViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/landing/src/main/java/com/himanshoe/landing/ui/LandingViewModel.kt -------------------------------------------------------------------------------- /feature/landing/src/main/java/com/himanshoe/landing/ui/composable/MovieComposable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/landing/src/main/java/com/himanshoe/landing/ui/composable/MovieComposable.kt -------------------------------------------------------------------------------- /feature/landing/src/main/java/com/himanshoe/landing/ui/composable/ProfileComposable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/landing/src/main/java/com/himanshoe/landing/ui/composable/ProfileComposable.kt -------------------------------------------------------------------------------- /feature/landing/src/main/res/layout/landing_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/landing/src/main/res/layout/landing_fragment.xml -------------------------------------------------------------------------------- /feature/landing/src/main/res/navigation/landing_navigation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/landing/src/main/res/navigation/landing_navigation.xml -------------------------------------------------------------------------------- /feature/landing/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/landing/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /feature/landing/src/test/java/com/himanshoe/landing/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/landing/src/test/java/com/himanshoe/landing/ExampleUnitTest.kt -------------------------------------------------------------------------------- /feature/login/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /feature/login/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/login/build.gradle -------------------------------------------------------------------------------- /feature/login/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /feature/login/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/login/proguard-rules.pro -------------------------------------------------------------------------------- /feature/login/src/androidTest/java/com/himanshoe/login/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/login/src/androidTest/java/com/himanshoe/login/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /feature/login/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/login/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /feature/login/src/main/java/com/himanshoe/login/ui/LoginDeeplink.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/login/src/main/java/com/himanshoe/login/ui/LoginDeeplink.kt -------------------------------------------------------------------------------- /feature/login/src/main/java/com/himanshoe/login/ui/LoginFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/login/src/main/java/com/himanshoe/login/ui/LoginFragment.kt -------------------------------------------------------------------------------- /feature/login/src/main/java/com/himanshoe/login/ui/LoginViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/login/src/main/java/com/himanshoe/login/ui/LoginViewModel.kt -------------------------------------------------------------------------------- /feature/login/src/main/java/com/himanshoe/login/ui/composable/LoginComposables.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/login/src/main/java/com/himanshoe/login/ui/composable/LoginComposables.kt -------------------------------------------------------------------------------- /feature/login/src/main/res/navigation/login_navigation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/login/src/main/res/navigation/login_navigation.xml -------------------------------------------------------------------------------- /feature/login/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/login/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /feature/login/src/test/java/com/himanshoe/login/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/login/src/test/java/com/himanshoe/login/ExampleUnitTest.kt -------------------------------------------------------------------------------- /feature/profile/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /feature/profile/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/profile/build.gradle -------------------------------------------------------------------------------- /feature/profile/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /feature/profile/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/profile/proguard-rules.pro -------------------------------------------------------------------------------- /feature/profile/src/androidTest/java/com/himanshoe/profile/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/profile/src/androidTest/java/com/himanshoe/profile/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /feature/profile/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/profile/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /feature/profile/src/main/java/com/himanshoe/profile/EditProfileComposable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/profile/src/main/java/com/himanshoe/profile/EditProfileComposable.kt -------------------------------------------------------------------------------- /feature/profile/src/main/java/com/himanshoe/profile/EditProfileFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/profile/src/main/java/com/himanshoe/profile/EditProfileFragment.kt -------------------------------------------------------------------------------- /feature/profile/src/main/java/com/himanshoe/profile/EditProfileViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/profile/src/main/java/com/himanshoe/profile/EditProfileViewModel.kt -------------------------------------------------------------------------------- /feature/profile/src/main/res/navigation/profile_navigation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/profile/src/main/res/navigation/profile_navigation.xml -------------------------------------------------------------------------------- /feature/profile/src/test/java/com/himanshoe/profile/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/profile/src/test/java/com/himanshoe/profile/ExampleUnitTest.kt -------------------------------------------------------------------------------- /feature/splash/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /feature/splash/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/splash/build.gradle -------------------------------------------------------------------------------- /feature/splash/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /feature/splash/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/splash/proguard-rules.pro -------------------------------------------------------------------------------- /feature/splash/src/androidTest/java/com/himanshoe/splash/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/splash/src/androidTest/java/com/himanshoe/splash/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /feature/splash/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/splash/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /feature/splash/src/main/java/com/himanshoe/splash/SplashDeeplink.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/splash/src/main/java/com/himanshoe/splash/SplashDeeplink.kt -------------------------------------------------------------------------------- /feature/splash/src/main/java/com/himanshoe/splash/SplashFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/splash/src/main/java/com/himanshoe/splash/SplashFragment.kt -------------------------------------------------------------------------------- /feature/splash/src/main/java/com/himanshoe/splash/SplashViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/splash/src/main/java/com/himanshoe/splash/SplashViewModel.kt -------------------------------------------------------------------------------- /feature/splash/src/main/java/com/himanshoe/splash/composables/LogoState.kt: -------------------------------------------------------------------------------- 1 | package com.himanshoe.splash.composables 2 | -------------------------------------------------------------------------------- /feature/splash/src/main/java/com/himanshoe/splash/composables/SplashComposable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/splash/src/main/java/com/himanshoe/splash/composables/SplashComposable.kt -------------------------------------------------------------------------------- /feature/splash/src/main/java/com/himanshoe/splash/composables/keys.kt: -------------------------------------------------------------------------------- 1 | package com.himanshoe.splash.composables 2 | 3 | -------------------------------------------------------------------------------- /feature/splash/src/main/res/drawable/splash_image.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/splash/src/main/res/drawable/splash_image.webp -------------------------------------------------------------------------------- /feature/splash/src/main/res/navigation/splash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/splash/src/main/res/navigation/splash.xml -------------------------------------------------------------------------------- /feature/splash/src/test/java/com/himanshoe/splash/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/feature/splash/src/test/java/com/himanshoe/splash/ExampleUnitTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-manshu/ComposePictures/HEAD/settings.gradle --------------------------------------------------------------------------------