/smooth-corner-rect-android-compose

Android Jetpack Compose Library that implements mathematically accurate Squircles/Superellipses to be used by composables and themes.

Primary LanguageKotlinMIT LicenseMIT

Smooth Corner Rect Android Compose

Demo app gif

An Android Jetpack Compose Library which implements true smooth rounded corner rectangles also known as Squircles/Superellipses with custumizable radius and smoothness values for each individual corner.

License API Release version Issues Contributors Stars


Table of Contents

  1. How to add dependency
  2. Usage
    1. Creating a Squircle shape
    2. Creating a Squircle shape with individual corner radius and smoothenss values
  3. License

How to add dependency

Add the Jitpack repository to your root build.gradle file:

allprojects {
  repositories {
    maven { url 'https://jitpack.io' }
  }
}

Also add the smooth-corner-rect-android-compose dependency to your app build.gradle:

dependencies {
  implementation 'com.github.racra:smooth-corner-rect-android-compose:v1.0.0'
}

Usage

Shapes created by this library can be used in themes and regular composables, check out the sample app for a working demo of the library.

Creating a Squircle shape

Surface(
    modifier = Modifier
        .padding(25.dp)
        .height(200.dp)
        .width(200.dp),
    color = Color(0xFFF6EABE),
    shape = AbsoluteSmoothCornerShape(50.dp, 100)
) {}

Creating a Squircle shape with individual corner radius and smoothenss values

Surface(
    modifier = Modifier
        .padding(25.dp)
        .height(200.dp)
        .width(200.dp),
    color = Color(0xFFF6EABE),
    shape = AbsoluteSmoothCornerShape(
        100.dp, 100,
        5.dp, 50,
        100.dp, 100,
        5.dp, 50,
    )
) {}

License

MIT License

Copyright (c) 2021 Rodrigo Alves

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.