├── .gitignore ├── README.md ├── android ├── build.gradle.kts └── src │ ├── androidMain │ ├── AndroidManifest.xml │ ├── kotlin │ │ └── dev │ │ │ └── bmcreations │ │ │ └── template │ │ │ └── MainActivity.kt │ └── res │ │ └── values │ │ └── styles.xml │ └── google-services.json ├── cleanup.sh ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── ios ├── AppSecrets.plist ├── Configuration │ └── Config.xcconfig ├── ios.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcshareddata │ │ └── xcschemes │ │ └── ios.xcscheme └── ios │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── ContentView.swift │ ├── Info.plist │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ └── iOSApp.swift ├── settings.gradle.kts └── shared ├── build.gradle.kts ├── shared.podspec └── src ├── androidMain ├── kotlin │ └── dev │ │ └── bmcreations │ │ └── template │ │ ├── inject │ │ └── ApplicationComponent.android.kt │ │ ├── main.android.kt │ │ ├── navigation │ │ ├── AppNavigation.android.kt │ │ └── BackHandler.android.kt │ │ ├── utils │ │ ├── Dispatcher.android.kt │ │ ├── Platform.android.kt │ │ └── ui │ │ │ ├── Font.android.kt │ │ │ ├── Sizes.android.kt │ │ │ └── WindowInsets.android.kt │ │ └── viewmodel │ │ └── CreationExtras.android.kt └── res │ └── values │ └── firebase.xml ├── commonMain ├── kotlin │ └── dev │ │ └── bmcreations │ │ └── template │ │ ├── App.kt │ │ ├── data │ │ └── User.kt │ │ ├── domain │ │ └── authentication │ │ │ ├── AuthServiceProvider.kt │ │ │ ├── UserRepository.kt │ │ │ └── firebase │ │ │ ├── FirebaseAuthProvider.kt │ │ │ └── GoogleIdProvider.kt │ │ ├── inject │ │ ├── ApplicationComponent.kt │ │ ├── AuthenticationComponent.kt │ │ ├── DataComponent.kt │ │ ├── FirebaseComponent.kt │ │ ├── Scope.kt │ │ └── ViewModelComponent.kt │ │ ├── navigation │ │ ├── AppNavigation.kt │ │ ├── BackHandler.kt │ │ ├── BottomSheetNavigator.kt │ │ └── Screens.kt │ │ ├── screens │ │ └── home │ │ │ ├── HomeScreen.kt │ │ │ └── HomeViewModel.kt │ │ ├── theme │ │ ├── Color.kt │ │ ├── Dimens.kt │ │ ├── Shape.kt │ │ ├── Theme.kt │ │ └── Type.kt │ │ ├── ui │ │ ├── components │ │ │ ├── Modal.kt │ │ │ └── Row.kt │ │ └── resources │ │ │ └── Drawables.kt │ │ ├── utils │ │ ├── DispatcherProvider.kt │ │ ├── Platform.kt │ │ └── ui │ │ │ ├── Font.kt │ │ │ ├── Modifier.kt │ │ │ ├── PaddingValues.kt │ │ │ ├── Sizes.kt │ │ │ └── WindowInsets.kt │ │ └── viewmodel │ │ ├── BaseViewModel.kt │ │ ├── CreationExtras.kt │ │ └── ViewModelFactory.kt ├── res │ └── font │ │ └── inter.ttf └── resources │ ├── drawable │ └── compose-multiplatform.xml │ └── font │ └── inter.ttf └── iosMain └── kotlin └── dev └── bmcreations └── template ├── inject └── ApplicationComponent.ios.kt ├── main.ios.kt ├── navigation ├── AppNavigation.ios.kt ├── BackHandler.ios.kt └── BackdropNavigator.kt ├── ui └── components │ └── BackdropScaffold.kt ├── utils ├── Dispatcher.kt ├── Platform.ios.kt └── ui │ ├── Font.ios.kt │ ├── Sizes.ios.kt │ └── WindowInsets.ios.kt └── viewmodel └── CreationExtras.ios.kt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/README.md -------------------------------------------------------------------------------- /android/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/android/build.gradle.kts -------------------------------------------------------------------------------- /android/src/androidMain/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/android/src/androidMain/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/androidMain/kotlin/dev/bmcreations/template/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/android/src/androidMain/kotlin/dev/bmcreations/template/MainActivity.kt -------------------------------------------------------------------------------- /android/src/androidMain/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/android/src/androidMain/res/values/styles.xml -------------------------------------------------------------------------------- /android/src/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/android/src/google-services.json -------------------------------------------------------------------------------- /cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/cleanup.sh -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/gradlew.bat -------------------------------------------------------------------------------- /ios/AppSecrets.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/ios/AppSecrets.plist -------------------------------------------------------------------------------- /ios/Configuration/Config.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/ios/Configuration/Config.xcconfig -------------------------------------------------------------------------------- /ios/ios.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/ios/ios.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/ios.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/ios/ios.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/ios.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/ios/ios.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/ios.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/ios/ios.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /ios/ios.xcodeproj/xcshareddata/xcschemes/ios.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/ios/ios.xcodeproj/xcshareddata/xcschemes/ios.xcscheme -------------------------------------------------------------------------------- /ios/ios/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/ios/ios/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /ios/ios/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/ios/ios/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/ios/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/ios/ios/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/ios/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/ios/ios/ContentView.swift -------------------------------------------------------------------------------- /ios/ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/ios/ios/Info.plist -------------------------------------------------------------------------------- /ios/ios/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/ios/ios/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/ios/iOSApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/ios/ios/iOSApp.swift -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /shared/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/build.gradle.kts -------------------------------------------------------------------------------- /shared/shared.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/shared.podspec -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/dev/bmcreations/template/inject/ApplicationComponent.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/androidMain/kotlin/dev/bmcreations/template/inject/ApplicationComponent.android.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/dev/bmcreations/template/main.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/androidMain/kotlin/dev/bmcreations/template/main.android.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/dev/bmcreations/template/navigation/AppNavigation.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/androidMain/kotlin/dev/bmcreations/template/navigation/AppNavigation.android.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/dev/bmcreations/template/navigation/BackHandler.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/androidMain/kotlin/dev/bmcreations/template/navigation/BackHandler.android.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/dev/bmcreations/template/utils/Dispatcher.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/androidMain/kotlin/dev/bmcreations/template/utils/Dispatcher.android.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/dev/bmcreations/template/utils/Platform.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/androidMain/kotlin/dev/bmcreations/template/utils/Platform.android.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/dev/bmcreations/template/utils/ui/Font.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/androidMain/kotlin/dev/bmcreations/template/utils/ui/Font.android.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/dev/bmcreations/template/utils/ui/Sizes.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/androidMain/kotlin/dev/bmcreations/template/utils/ui/Sizes.android.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/dev/bmcreations/template/utils/ui/WindowInsets.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/androidMain/kotlin/dev/bmcreations/template/utils/ui/WindowInsets.android.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/dev/bmcreations/template/viewmodel/CreationExtras.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/androidMain/kotlin/dev/bmcreations/template/viewmodel/CreationExtras.android.kt -------------------------------------------------------------------------------- /shared/src/androidMain/res/values/firebase.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/androidMain/res/values/firebase.xml -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/dev/bmcreations/template/App.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/commonMain/kotlin/dev/bmcreations/template/App.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/dev/bmcreations/template/data/User.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/commonMain/kotlin/dev/bmcreations/template/data/User.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/dev/bmcreations/template/domain/authentication/AuthServiceProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/commonMain/kotlin/dev/bmcreations/template/domain/authentication/AuthServiceProvider.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/dev/bmcreations/template/domain/authentication/UserRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/commonMain/kotlin/dev/bmcreations/template/domain/authentication/UserRepository.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/dev/bmcreations/template/domain/authentication/firebase/FirebaseAuthProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/commonMain/kotlin/dev/bmcreations/template/domain/authentication/firebase/FirebaseAuthProvider.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/dev/bmcreations/template/domain/authentication/firebase/GoogleIdProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/commonMain/kotlin/dev/bmcreations/template/domain/authentication/firebase/GoogleIdProvider.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/dev/bmcreations/template/inject/ApplicationComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/commonMain/kotlin/dev/bmcreations/template/inject/ApplicationComponent.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/dev/bmcreations/template/inject/AuthenticationComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/commonMain/kotlin/dev/bmcreations/template/inject/AuthenticationComponent.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/dev/bmcreations/template/inject/DataComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/commonMain/kotlin/dev/bmcreations/template/inject/DataComponent.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/dev/bmcreations/template/inject/FirebaseComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/commonMain/kotlin/dev/bmcreations/template/inject/FirebaseComponent.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/dev/bmcreations/template/inject/Scope.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/commonMain/kotlin/dev/bmcreations/template/inject/Scope.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/dev/bmcreations/template/inject/ViewModelComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/commonMain/kotlin/dev/bmcreations/template/inject/ViewModelComponent.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/dev/bmcreations/template/navigation/AppNavigation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/commonMain/kotlin/dev/bmcreations/template/navigation/AppNavigation.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/dev/bmcreations/template/navigation/BackHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/commonMain/kotlin/dev/bmcreations/template/navigation/BackHandler.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/dev/bmcreations/template/navigation/BottomSheetNavigator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/commonMain/kotlin/dev/bmcreations/template/navigation/BottomSheetNavigator.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/dev/bmcreations/template/navigation/Screens.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/commonMain/kotlin/dev/bmcreations/template/navigation/Screens.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/dev/bmcreations/template/screens/home/HomeScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/commonMain/kotlin/dev/bmcreations/template/screens/home/HomeScreen.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/dev/bmcreations/template/screens/home/HomeViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/commonMain/kotlin/dev/bmcreations/template/screens/home/HomeViewModel.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/dev/bmcreations/template/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/commonMain/kotlin/dev/bmcreations/template/theme/Color.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/dev/bmcreations/template/theme/Dimens.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/commonMain/kotlin/dev/bmcreations/template/theme/Dimens.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/dev/bmcreations/template/theme/Shape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/commonMain/kotlin/dev/bmcreations/template/theme/Shape.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/dev/bmcreations/template/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/commonMain/kotlin/dev/bmcreations/template/theme/Theme.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/dev/bmcreations/template/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/commonMain/kotlin/dev/bmcreations/template/theme/Type.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/dev/bmcreations/template/ui/components/Modal.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/commonMain/kotlin/dev/bmcreations/template/ui/components/Modal.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/dev/bmcreations/template/ui/components/Row.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/commonMain/kotlin/dev/bmcreations/template/ui/components/Row.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/dev/bmcreations/template/ui/resources/Drawables.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/commonMain/kotlin/dev/bmcreations/template/ui/resources/Drawables.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/dev/bmcreations/template/utils/DispatcherProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/commonMain/kotlin/dev/bmcreations/template/utils/DispatcherProvider.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/dev/bmcreations/template/utils/Platform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/commonMain/kotlin/dev/bmcreations/template/utils/Platform.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/dev/bmcreations/template/utils/ui/Font.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/commonMain/kotlin/dev/bmcreations/template/utils/ui/Font.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/dev/bmcreations/template/utils/ui/Modifier.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/commonMain/kotlin/dev/bmcreations/template/utils/ui/Modifier.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/dev/bmcreations/template/utils/ui/PaddingValues.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/commonMain/kotlin/dev/bmcreations/template/utils/ui/PaddingValues.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/dev/bmcreations/template/utils/ui/Sizes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/commonMain/kotlin/dev/bmcreations/template/utils/ui/Sizes.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/dev/bmcreations/template/utils/ui/WindowInsets.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/commonMain/kotlin/dev/bmcreations/template/utils/ui/WindowInsets.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/dev/bmcreations/template/viewmodel/BaseViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/commonMain/kotlin/dev/bmcreations/template/viewmodel/BaseViewModel.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/dev/bmcreations/template/viewmodel/CreationExtras.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/commonMain/kotlin/dev/bmcreations/template/viewmodel/CreationExtras.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/dev/bmcreations/template/viewmodel/ViewModelFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/commonMain/kotlin/dev/bmcreations/template/viewmodel/ViewModelFactory.kt -------------------------------------------------------------------------------- /shared/src/commonMain/res/font/inter.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/commonMain/res/font/inter.ttf -------------------------------------------------------------------------------- /shared/src/commonMain/resources/drawable/compose-multiplatform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/commonMain/resources/drawable/compose-multiplatform.xml -------------------------------------------------------------------------------- /shared/src/commonMain/resources/font/inter.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/commonMain/resources/font/inter.ttf -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/dev/bmcreations/template/inject/ApplicationComponent.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/iosMain/kotlin/dev/bmcreations/template/inject/ApplicationComponent.ios.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/dev/bmcreations/template/main.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/iosMain/kotlin/dev/bmcreations/template/main.ios.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/dev/bmcreations/template/navigation/AppNavigation.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/iosMain/kotlin/dev/bmcreations/template/navigation/AppNavigation.ios.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/dev/bmcreations/template/navigation/BackHandler.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/iosMain/kotlin/dev/bmcreations/template/navigation/BackHandler.ios.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/dev/bmcreations/template/navigation/BackdropNavigator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/iosMain/kotlin/dev/bmcreations/template/navigation/BackdropNavigator.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/dev/bmcreations/template/ui/components/BackdropScaffold.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/iosMain/kotlin/dev/bmcreations/template/ui/components/BackdropScaffold.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/dev/bmcreations/template/utils/Dispatcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/iosMain/kotlin/dev/bmcreations/template/utils/Dispatcher.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/dev/bmcreations/template/utils/Platform.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/iosMain/kotlin/dev/bmcreations/template/utils/Platform.ios.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/dev/bmcreations/template/utils/ui/Font.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/iosMain/kotlin/dev/bmcreations/template/utils/ui/Font.ios.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/dev/bmcreations/template/utils/ui/Sizes.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/iosMain/kotlin/dev/bmcreations/template/utils/ui/Sizes.ios.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/dev/bmcreations/template/utils/ui/WindowInsets.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/iosMain/kotlin/dev/bmcreations/template/utils/ui/WindowInsets.ios.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/dev/bmcreations/template/viewmodel/CreationExtras.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcreations/compose-kmp-template/HEAD/shared/src/iosMain/kotlin/dev/bmcreations/template/viewmodel/CreationExtras.ios.kt --------------------------------------------------------------------------------