Skip to content

Latest commit

 

History

History
256 lines (206 loc) · 5.19 KB

README.md

File metadata and controls

256 lines (206 loc) · 5.19 KB

Compose Shapes

Various shapes drawn with Jetpack Compose

compose shapes thumbnail

Quadrilateral

Name Screenshot Code
Rectangle
Box(
    modifier = Modifier
        .fillMaxSize()
        .weight(0.3f)
        .background(
            color = Color.Gray,
            shape = RectangleShape(
                topStart = 12.dp,
                topEnd = 12.dp,
                bottomStart = 12.dp,
                bottomEnd = 12.dp
            )
        )
) {
    // Content goes here
}
Parallelogram
Box(
    modifier = Modifier
        .fillMaxWidth()
        .background(
            Color.Gray,
	    shape = ParallelogramShape(
	        skewed = 0.3f,
    		topStart = 24.dp,
   	 	bottomEnd = 24.dp,
    		topEnd = 12.dp,
    		bottomStart = 12.dp
	    )
        )
) {
    // Content goes here
}
Rhombus
Box(
    modifier = Modifier
        .fillMaxSize()
        .weight(0.5f)
        .background(
            Color.Gray,
            shape = RhombusShape(
                top = 24.dp,
                start = 12.dp,
                end = 12.dp,
                bottom = 24.dp
            )
        )
) {
}
Trapezoid
Box(
    modifier = Modifier
        .fillMaxSize()
        .weight(0.5f)
        .background(
            Color.Gray,
            shape = TrapezoidShape(
                startSkewed = 0.2f,
                endSkewed = 0.4f,
                topStart = 12.dp,
                topEnd = 12.dp,
                bottomStart = 12.dp,
                bottomEnd = 12.dp
            )
        )
) {
}

Polygons

Name Screenshot Code
Regular Polygons
Box(
    modifier = Modifier
        .fillMaxWidth()
        .background(
            color = Color.Gray,
            shape = PolygonShape(
                numOfPoints = 5
            )
        )
) {
    // Content goes here
}
Star Polygon
Box(
    modifier = Modifier
        .fillMaxSize()
        .weight(0.5f)
        .background(
            Color.Gray,
            shape = StarPolygonShape(
                numOfPoints = 5,
                innerRadiusRatio = 0.5f, //0f .. 1f
                outerCornerSize = 24.dp,
                innerCornerSize = 12.dp
            )
        )
) {
}

CornerStyle

You can customize corners using the CornerStyle enum class.

Rounded Inner Rounded Cut

Others

Cloud Ring

Get Started

Step 1. Add it in your root build.gradle at the end of repositories

dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        google()
        mavenCentral()
        maven(url = "https://jitpack.io")
    }
}

Step 2. Add the dependency

dependencies {
	  implementation("com.github.uuranus:compose-shapes:latest-version")
}

LICENSE

Copyright 2024 uuranus All Rights Reserved.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.