├── .github ├── dependabot.yml └── workflows │ ├── deploy-sample-web.yaml │ └── deploy.yml ├── .gitignore ├── LICENSE ├── README.md ├── docs └── images │ ├── logo.png │ └── readme.png ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── local.properties ├── mise.toml ├── sample ├── compose-app │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ ├── androidMain │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── adamglin │ │ │ │ └── composesuperroundedshape │ │ │ │ ├── MainActivity.kt │ │ │ │ └── SampleApplication.kt │ │ └── res │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ └── values │ │ │ └── strings.xml │ │ ├── appleMain │ │ └── kotlin │ │ │ └── MainViewController.kt │ │ ├── commonMain │ │ └── kotlin │ │ │ └── SampleApp.kt │ │ ├── desktopMain │ │ └── kotlin │ │ │ └── com │ │ │ └── adamglin │ │ │ └── composesuperroundedshape │ │ │ └── main.kt │ │ ├── jsMain │ │ ├── kotlin │ │ │ └── main.kt │ │ └── resources │ │ │ ├── index.html │ │ │ └── styles.css │ │ └── wasmJsMain │ │ ├── kotlin │ │ └── main.kt │ │ └── resources │ │ ├── index.html │ │ └── styles.css └── ios-app │ ├── Configuration │ └── Config.xcconfig │ ├── iosApp.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── adamglin.xcuserdatad │ │ └── xcschemes │ │ ├── iosApp.xcscheme │ │ └── xcschememanagement.plist │ └── iosApp │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ └── app-icon-1024.png │ └── Contents.json │ ├── ContentView.swift │ ├── Info.plist │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ └── iOSApp.swift ├── settings.gradle.kts ├── super-rounded-corner-shape ├── build.gradle.kts └── src │ └── commonMain │ └── kotlin │ └── com │ └── adamglin │ └── composecontinuousroundedcornershape │ ├── AbsoluteContinuousRoundedCornerShape.kt │ ├── AbsoluteContinuousRoundedCornerShapeImpl.kt │ ├── ContinuousRoundedCornerShape.kt │ └── ContinuousRoundedCornerShapeImpl.kt └── super-rounded-shape.iml /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-sample-web.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/.github/workflows/deploy-sample-web.yaml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/README.md -------------------------------------------------------------------------------- /docs/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/docs/images/logo.png -------------------------------------------------------------------------------- /docs/images/readme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/docs/images/readme.png -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/gradlew.bat -------------------------------------------------------------------------------- /local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/local.properties -------------------------------------------------------------------------------- /mise.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/mise.toml -------------------------------------------------------------------------------- /sample/compose-app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/sample/compose-app/build.gradle.kts -------------------------------------------------------------------------------- /sample/compose-app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/sample/compose-app/proguard-rules.pro -------------------------------------------------------------------------------- /sample/compose-app/src/androidMain/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/sample/compose-app/src/androidMain/AndroidManifest.xml -------------------------------------------------------------------------------- /sample/compose-app/src/androidMain/kotlin/com/adamglin/composesuperroundedshape/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/sample/compose-app/src/androidMain/kotlin/com/adamglin/composesuperroundedshape/MainActivity.kt -------------------------------------------------------------------------------- /sample/compose-app/src/androidMain/kotlin/com/adamglin/composesuperroundedshape/SampleApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/sample/compose-app/src/androidMain/kotlin/com/adamglin/composesuperroundedshape/SampleApplication.kt -------------------------------------------------------------------------------- /sample/compose-app/src/androidMain/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/sample/compose-app/src/androidMain/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /sample/compose-app/src/androidMain/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/sample/compose-app/src/androidMain/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /sample/compose-app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/sample/compose-app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /sample/compose-app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/sample/compose-app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /sample/compose-app/src/androidMain/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/sample/compose-app/src/androidMain/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /sample/compose-app/src/androidMain/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/sample/compose-app/src/androidMain/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /sample/compose-app/src/androidMain/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/sample/compose-app/src/androidMain/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /sample/compose-app/src/androidMain/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/sample/compose-app/src/androidMain/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /sample/compose-app/src/androidMain/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/sample/compose-app/src/androidMain/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /sample/compose-app/src/androidMain/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/sample/compose-app/src/androidMain/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /sample/compose-app/src/androidMain/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/sample/compose-app/src/androidMain/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /sample/compose-app/src/androidMain/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/sample/compose-app/src/androidMain/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /sample/compose-app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/sample/compose-app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /sample/compose-app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/sample/compose-app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /sample/compose-app/src/androidMain/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/sample/compose-app/src/androidMain/res/values/strings.xml -------------------------------------------------------------------------------- /sample/compose-app/src/appleMain/kotlin/MainViewController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/sample/compose-app/src/appleMain/kotlin/MainViewController.kt -------------------------------------------------------------------------------- /sample/compose-app/src/commonMain/kotlin/SampleApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/sample/compose-app/src/commonMain/kotlin/SampleApp.kt -------------------------------------------------------------------------------- /sample/compose-app/src/desktopMain/kotlin/com/adamglin/composesuperroundedshape/main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/sample/compose-app/src/desktopMain/kotlin/com/adamglin/composesuperroundedshape/main.kt -------------------------------------------------------------------------------- /sample/compose-app/src/jsMain/kotlin/main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/sample/compose-app/src/jsMain/kotlin/main.kt -------------------------------------------------------------------------------- /sample/compose-app/src/jsMain/resources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/sample/compose-app/src/jsMain/resources/index.html -------------------------------------------------------------------------------- /sample/compose-app/src/jsMain/resources/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/sample/compose-app/src/jsMain/resources/styles.css -------------------------------------------------------------------------------- /sample/compose-app/src/wasmJsMain/kotlin/main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/sample/compose-app/src/wasmJsMain/kotlin/main.kt -------------------------------------------------------------------------------- /sample/compose-app/src/wasmJsMain/resources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/sample/compose-app/src/wasmJsMain/resources/index.html -------------------------------------------------------------------------------- /sample/compose-app/src/wasmJsMain/resources/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/sample/compose-app/src/wasmJsMain/resources/styles.css -------------------------------------------------------------------------------- /sample/ios-app/Configuration/Config.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/sample/ios-app/Configuration/Config.xcconfig -------------------------------------------------------------------------------- /sample/ios-app/iosApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/sample/ios-app/iosApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /sample/ios-app/iosApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/sample/ios-app/iosApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /sample/ios-app/iosApp.xcodeproj/xcuserdata/adamglin.xcuserdatad/xcschemes/iosApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/sample/ios-app/iosApp.xcodeproj/xcuserdata/adamglin.xcuserdatad/xcschemes/iosApp.xcscheme -------------------------------------------------------------------------------- /sample/ios-app/iosApp.xcodeproj/xcuserdata/adamglin.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/sample/ios-app/iosApp.xcodeproj/xcuserdata/adamglin.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /sample/ios-app/iosApp/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/sample/ios-app/iosApp/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /sample/ios-app/iosApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/sample/ios-app/iosApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /sample/ios-app/iosApp/Assets.xcassets/AppIcon.appiconset/app-icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/sample/ios-app/iosApp/Assets.xcassets/AppIcon.appiconset/app-icon-1024.png -------------------------------------------------------------------------------- /sample/ios-app/iosApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/sample/ios-app/iosApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /sample/ios-app/iosApp/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/sample/ios-app/iosApp/ContentView.swift -------------------------------------------------------------------------------- /sample/ios-app/iosApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/sample/ios-app/iosApp/Info.plist -------------------------------------------------------------------------------- /sample/ios-app/iosApp/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/sample/ios-app/iosApp/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /sample/ios-app/iosApp/iOSApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/sample/ios-app/iosApp/iOSApp.swift -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /super-rounded-corner-shape/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/super-rounded-corner-shape/build.gradle.kts -------------------------------------------------------------------------------- /super-rounded-corner-shape/src/commonMain/kotlin/com/adamglin/composecontinuousroundedcornershape/AbsoluteContinuousRoundedCornerShape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/super-rounded-corner-shape/src/commonMain/kotlin/com/adamglin/composecontinuousroundedcornershape/AbsoluteContinuousRoundedCornerShape.kt -------------------------------------------------------------------------------- /super-rounded-corner-shape/src/commonMain/kotlin/com/adamglin/composecontinuousroundedcornershape/AbsoluteContinuousRoundedCornerShapeImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/super-rounded-corner-shape/src/commonMain/kotlin/com/adamglin/composecontinuousroundedcornershape/AbsoluteContinuousRoundedCornerShapeImpl.kt -------------------------------------------------------------------------------- /super-rounded-corner-shape/src/commonMain/kotlin/com/adamglin/composecontinuousroundedcornershape/ContinuousRoundedCornerShape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/super-rounded-corner-shape/src/commonMain/kotlin/com/adamglin/composecontinuousroundedcornershape/ContinuousRoundedCornerShape.kt -------------------------------------------------------------------------------- /super-rounded-corner-shape/src/commonMain/kotlin/com/adamglin/composecontinuousroundedcornershape/ContinuousRoundedCornerShapeImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/super-rounded-corner-shape/src/commonMain/kotlin/com/adamglin/composecontinuousroundedcornershape/ContinuousRoundedCornerShapeImpl.kt -------------------------------------------------------------------------------- /super-rounded-shape.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglin0/compose-continuous-rounded-corner-shape/HEAD/super-rounded-shape.iml --------------------------------------------------------------------------------