Skip to content

uuranus/compose-shapes

Repository files navigation

Compose Shapes

Various shapes drawn with Jetpack Compose

compose shapes thumbnail

Rectangles

Name Screenshot Code
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 = numOfPoints.toInt()
            )
        )
) {
    // Content goes here
}
Star Polygon
Box(
    modifier = Modifier
        .fillMaxSize()
        .weight(0.5f)
        .background(
            Color.Gray,
            shape = StarPolygonShape(
                numOfPoints = 5,
                innerRadiusRatio = 0.5f,
                outerCornerSize = 24.dp,
                innerCornerSize = 12.dp
            )
        )
) {
}

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.