├── .gitignore ├── androidApp ├── build.gradle.kts └── src │ └── androidMain │ ├── AndroidManifest.xml │ ├── kotlin │ └── com │ │ └── kashif │ │ └── composemptweaks │ │ └── MainActivity.kt │ └── res │ └── values │ ├── strings.xml │ └── styles.xml ├── desktopApp ├── build.gradle.kts └── src │ └── jvmMain │ └── kotlin │ └── main.kt ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── iosApp ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── shared.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── Pods-iosApp │ │ ├── Pods-iosApp-Info.plist │ │ ├── Pods-iosApp-acknowledgements.markdown │ │ ├── Pods-iosApp-acknowledgements.plist │ │ ├── Pods-iosApp-dummy.m │ │ ├── Pods-iosApp-frameworks-Debug-input-files.xcfilelist │ │ ├── Pods-iosApp-frameworks-Debug-output-files.xcfilelist │ │ ├── Pods-iosApp-frameworks-Release-input-files.xcfilelist │ │ ├── Pods-iosApp-frameworks-Release-output-files.xcfilelist │ │ ├── Pods-iosApp-frameworks.sh │ │ ├── Pods-iosApp-umbrella.h │ │ ├── Pods-iosApp.debug.xcconfig │ │ ├── Pods-iosApp.modulemap │ │ └── Pods-iosApp.release.xcconfig │ │ └── shared │ │ ├── shared.debug.xcconfig │ │ └── shared.release.xcconfig ├── iosApp.xcodeproj │ └── project.pbxproj ├── iosApp.xcworkspace │ └── contents.xcworkspacedata └── iosApp │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── ContentView.swift │ ├── Info.plist │ ├── LottieView.swift │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ ├── iOSApp.swift │ └── walking_dog.json ├── settings.gradle.kts └── shared ├── build.gradle.kts ├── shared.podspec └── src ├── androidMain ├── AndroidManifest.xml └── kotlin │ └── com │ └── kashif │ └── composemptweaks │ └── main.android.kt ├── commonMain ├── composeResources │ └── drawable │ │ ├── clap.xml │ │ ├── curious.xml │ │ ├── heart.xml │ │ ├── ic_check_big.xml │ │ ├── ic_explore.xml │ │ ├── ic_eye.xml │ │ ├── ic_home.xml │ │ ├── ic_movies.xml │ │ ├── ic_profile.xml │ │ ├── ic_send.xml │ │ ├── insightful.xml │ │ ├── like.xml │ │ └── support.xml └── kotlin │ └── com │ └── kashif │ └── composemptweaks │ ├── AnimatedLazyColumn.kt │ ├── App.kt │ ├── CardSwipeStack.kt │ ├── Chat.kt │ ├── ClubbedPhotos.kt │ ├── Color.kt │ ├── CoupledScroller.kt │ ├── DayNightSwitch.kt │ ├── DotLoader.kt │ ├── FilledSlider.kt │ ├── FluidBottomBar.kt │ ├── HighlightedTextSearch.kt │ ├── LinkedInReactions.kt │ ├── LiquidLoader.kt │ ├── OTPView.kt │ ├── PercentageGauge.kt │ ├── PlayPauseButton.kt │ ├── RadioButtonGroup.kt │ ├── RatingBarEditable.kt │ ├── SegmentedCylinder.kt │ ├── SegmentedLazyColumn.kt │ ├── data │ ├── dto │ │ └── MessageDTO.kt │ ├── remote │ │ └── RemoteDataSource.kt │ └── repository │ │ └── DataRepository.kt │ └── domain │ ├── ChatViewModel.kt │ ├── DrawableHelper.kt │ └── KoinModule.kt ├── desktopMain └── kotlin │ └── com │ └── kashif │ └── composemptweaks │ └── main.desktop.kt └── iosMain └── kotlin └── com └── kashif └── composemptweaks └── main.ios.kt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/.gitignore -------------------------------------------------------------------------------- /androidApp/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/androidApp/build.gradle.kts -------------------------------------------------------------------------------- /androidApp/src/androidMain/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/androidApp/src/androidMain/AndroidManifest.xml -------------------------------------------------------------------------------- /androidApp/src/androidMain/kotlin/com/kashif/composemptweaks/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/androidApp/src/androidMain/kotlin/com/kashif/composemptweaks/MainActivity.kt -------------------------------------------------------------------------------- /androidApp/src/androidMain/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/androidApp/src/androidMain/res/values/strings.xml -------------------------------------------------------------------------------- /androidApp/src/androidMain/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/androidApp/src/androidMain/res/values/styles.xml -------------------------------------------------------------------------------- /desktopApp/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/desktopApp/build.gradle.kts -------------------------------------------------------------------------------- /desktopApp/src/jvmMain/kotlin/main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/desktopApp/src/jvmMain/kotlin/main.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/gradlew.bat -------------------------------------------------------------------------------- /iosApp/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/iosApp/Podfile -------------------------------------------------------------------------------- /iosApp/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/iosApp/Podfile.lock -------------------------------------------------------------------------------- /iosApp/Pods/Local Podspecs/shared.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/iosApp/Pods/Local Podspecs/shared.podspec.json -------------------------------------------------------------------------------- /iosApp/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/iosApp/Pods/Manifest.lock -------------------------------------------------------------------------------- /iosApp/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/iosApp/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iosApp/Pods/Target Support Files/Pods-iosApp/Pods-iosApp-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/iosApp/Pods/Target Support Files/Pods-iosApp/Pods-iosApp-Info.plist -------------------------------------------------------------------------------- /iosApp/Pods/Target Support Files/Pods-iosApp/Pods-iosApp-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/iosApp/Pods/Target Support Files/Pods-iosApp/Pods-iosApp-acknowledgements.markdown -------------------------------------------------------------------------------- /iosApp/Pods/Target Support Files/Pods-iosApp/Pods-iosApp-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/iosApp/Pods/Target Support Files/Pods-iosApp/Pods-iosApp-acknowledgements.plist -------------------------------------------------------------------------------- /iosApp/Pods/Target Support Files/Pods-iosApp/Pods-iosApp-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/iosApp/Pods/Target Support Files/Pods-iosApp/Pods-iosApp-dummy.m -------------------------------------------------------------------------------- /iosApp/Pods/Target Support Files/Pods-iosApp/Pods-iosApp-frameworks-Debug-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/iosApp/Pods/Target Support Files/Pods-iosApp/Pods-iosApp-frameworks-Debug-input-files.xcfilelist -------------------------------------------------------------------------------- /iosApp/Pods/Target Support Files/Pods-iosApp/Pods-iosApp-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Lottie.framework -------------------------------------------------------------------------------- /iosApp/Pods/Target Support Files/Pods-iosApp/Pods-iosApp-frameworks-Release-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/iosApp/Pods/Target Support Files/Pods-iosApp/Pods-iosApp-frameworks-Release-input-files.xcfilelist -------------------------------------------------------------------------------- /iosApp/Pods/Target Support Files/Pods-iosApp/Pods-iosApp-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Lottie.framework -------------------------------------------------------------------------------- /iosApp/Pods/Target Support Files/Pods-iosApp/Pods-iosApp-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/iosApp/Pods/Target Support Files/Pods-iosApp/Pods-iosApp-frameworks.sh -------------------------------------------------------------------------------- /iosApp/Pods/Target Support Files/Pods-iosApp/Pods-iosApp-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/iosApp/Pods/Target Support Files/Pods-iosApp/Pods-iosApp-umbrella.h -------------------------------------------------------------------------------- /iosApp/Pods/Target Support Files/Pods-iosApp/Pods-iosApp.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/iosApp/Pods/Target Support Files/Pods-iosApp/Pods-iosApp.debug.xcconfig -------------------------------------------------------------------------------- /iosApp/Pods/Target Support Files/Pods-iosApp/Pods-iosApp.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/iosApp/Pods/Target Support Files/Pods-iosApp/Pods-iosApp.modulemap -------------------------------------------------------------------------------- /iosApp/Pods/Target Support Files/Pods-iosApp/Pods-iosApp.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/iosApp/Pods/Target Support Files/Pods-iosApp/Pods-iosApp.release.xcconfig -------------------------------------------------------------------------------- /iosApp/Pods/Target Support Files/shared/shared.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/iosApp/Pods/Target Support Files/shared/shared.debug.xcconfig -------------------------------------------------------------------------------- /iosApp/Pods/Target Support Files/shared/shared.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/iosApp/Pods/Target Support Files/shared/shared.release.xcconfig -------------------------------------------------------------------------------- /iosApp/iosApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/iosApp/iosApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iosApp/iosApp.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/iosApp/iosApp.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/iosApp/iosApp/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/iosApp/iosApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /iosApp/iosApp/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/iosApp/iosApp/ContentView.swift -------------------------------------------------------------------------------- /iosApp/iosApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/iosApp/iosApp/Info.plist -------------------------------------------------------------------------------- /iosApp/iosApp/LottieView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/iosApp/iosApp/LottieView.swift -------------------------------------------------------------------------------- /iosApp/iosApp/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/iosApp/iosApp/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /iosApp/iosApp/iOSApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/iosApp/iosApp/iOSApp.swift -------------------------------------------------------------------------------- /iosApp/iosApp/walking_dog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/iosApp/iosApp/walking_dog.json -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /shared/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/shared/build.gradle.kts -------------------------------------------------------------------------------- /shared/shared.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/shared/shared.podspec -------------------------------------------------------------------------------- /shared/src/androidMain/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/com/kashif/composemptweaks/main.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/shared/src/androidMain/kotlin/com/kashif/composemptweaks/main.android.kt -------------------------------------------------------------------------------- /shared/src/commonMain/composeResources/drawable/clap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/shared/src/commonMain/composeResources/drawable/clap.xml -------------------------------------------------------------------------------- /shared/src/commonMain/composeResources/drawable/curious.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/shared/src/commonMain/composeResources/drawable/curious.xml -------------------------------------------------------------------------------- /shared/src/commonMain/composeResources/drawable/heart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/shared/src/commonMain/composeResources/drawable/heart.xml -------------------------------------------------------------------------------- /shared/src/commonMain/composeResources/drawable/ic_check_big.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/shared/src/commonMain/composeResources/drawable/ic_check_big.xml -------------------------------------------------------------------------------- /shared/src/commonMain/composeResources/drawable/ic_explore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/shared/src/commonMain/composeResources/drawable/ic_explore.xml -------------------------------------------------------------------------------- /shared/src/commonMain/composeResources/drawable/ic_eye.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/shared/src/commonMain/composeResources/drawable/ic_eye.xml -------------------------------------------------------------------------------- /shared/src/commonMain/composeResources/drawable/ic_home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/shared/src/commonMain/composeResources/drawable/ic_home.xml -------------------------------------------------------------------------------- /shared/src/commonMain/composeResources/drawable/ic_movies.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/shared/src/commonMain/composeResources/drawable/ic_movies.xml -------------------------------------------------------------------------------- /shared/src/commonMain/composeResources/drawable/ic_profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/shared/src/commonMain/composeResources/drawable/ic_profile.xml -------------------------------------------------------------------------------- /shared/src/commonMain/composeResources/drawable/ic_send.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/shared/src/commonMain/composeResources/drawable/ic_send.xml -------------------------------------------------------------------------------- /shared/src/commonMain/composeResources/drawable/insightful.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/shared/src/commonMain/composeResources/drawable/insightful.xml -------------------------------------------------------------------------------- /shared/src/commonMain/composeResources/drawable/like.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/shared/src/commonMain/composeResources/drawable/like.xml -------------------------------------------------------------------------------- /shared/src/commonMain/composeResources/drawable/support.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/shared/src/commonMain/composeResources/drawable/support.xml -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/kashif/composemptweaks/AnimatedLazyColumn.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/shared/src/commonMain/kotlin/com/kashif/composemptweaks/AnimatedLazyColumn.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/kashif/composemptweaks/App.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/shared/src/commonMain/kotlin/com/kashif/composemptweaks/App.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/kashif/composemptweaks/CardSwipeStack.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/shared/src/commonMain/kotlin/com/kashif/composemptweaks/CardSwipeStack.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/kashif/composemptweaks/Chat.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/shared/src/commonMain/kotlin/com/kashif/composemptweaks/Chat.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/kashif/composemptweaks/ClubbedPhotos.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/shared/src/commonMain/kotlin/com/kashif/composemptweaks/ClubbedPhotos.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/kashif/composemptweaks/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/shared/src/commonMain/kotlin/com/kashif/composemptweaks/Color.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/kashif/composemptweaks/CoupledScroller.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/shared/src/commonMain/kotlin/com/kashif/composemptweaks/CoupledScroller.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/kashif/composemptweaks/DayNightSwitch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/shared/src/commonMain/kotlin/com/kashif/composemptweaks/DayNightSwitch.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/kashif/composemptweaks/DotLoader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/shared/src/commonMain/kotlin/com/kashif/composemptweaks/DotLoader.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/kashif/composemptweaks/FilledSlider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/shared/src/commonMain/kotlin/com/kashif/composemptweaks/FilledSlider.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/kashif/composemptweaks/FluidBottomBar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/shared/src/commonMain/kotlin/com/kashif/composemptweaks/FluidBottomBar.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/kashif/composemptweaks/HighlightedTextSearch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/shared/src/commonMain/kotlin/com/kashif/composemptweaks/HighlightedTextSearch.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/kashif/composemptweaks/LinkedInReactions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/shared/src/commonMain/kotlin/com/kashif/composemptweaks/LinkedInReactions.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/kashif/composemptweaks/LiquidLoader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/shared/src/commonMain/kotlin/com/kashif/composemptweaks/LiquidLoader.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/kashif/composemptweaks/OTPView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/shared/src/commonMain/kotlin/com/kashif/composemptweaks/OTPView.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/kashif/composemptweaks/PercentageGauge.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/shared/src/commonMain/kotlin/com/kashif/composemptweaks/PercentageGauge.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/kashif/composemptweaks/PlayPauseButton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/shared/src/commonMain/kotlin/com/kashif/composemptweaks/PlayPauseButton.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/kashif/composemptweaks/RadioButtonGroup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/shared/src/commonMain/kotlin/com/kashif/composemptweaks/RadioButtonGroup.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/kashif/composemptweaks/RatingBarEditable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/shared/src/commonMain/kotlin/com/kashif/composemptweaks/RatingBarEditable.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/kashif/composemptweaks/SegmentedCylinder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/shared/src/commonMain/kotlin/com/kashif/composemptweaks/SegmentedCylinder.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/kashif/composemptweaks/SegmentedLazyColumn.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/shared/src/commonMain/kotlin/com/kashif/composemptweaks/SegmentedLazyColumn.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/kashif/composemptweaks/data/dto/MessageDTO.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/shared/src/commonMain/kotlin/com/kashif/composemptweaks/data/dto/MessageDTO.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/kashif/composemptweaks/data/remote/RemoteDataSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/shared/src/commonMain/kotlin/com/kashif/composemptweaks/data/remote/RemoteDataSource.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/kashif/composemptweaks/data/repository/DataRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/shared/src/commonMain/kotlin/com/kashif/composemptweaks/data/repository/DataRepository.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/kashif/composemptweaks/domain/ChatViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/shared/src/commonMain/kotlin/com/kashif/composemptweaks/domain/ChatViewModel.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/kashif/composemptweaks/domain/DrawableHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/shared/src/commonMain/kotlin/com/kashif/composemptweaks/domain/DrawableHelper.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/kashif/composemptweaks/domain/KoinModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/shared/src/commonMain/kotlin/com/kashif/composemptweaks/domain/KoinModule.kt -------------------------------------------------------------------------------- /shared/src/desktopMain/kotlin/com/kashif/composemptweaks/main.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/shared/src/desktopMain/kotlin/com/kashif/composemptweaks/main.desktop.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/com/kashif/composemptweaks/main.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7kashif/ComposeMPTweaks/HEAD/shared/src/iosMain/kotlin/com/kashif/composemptweaks/main.ios.kt --------------------------------------------------------------------------------