Mahdi-Malv
Mahdi-Malv

Reputation: 19220

Draw a line in jetpack compose

Using XML layout, you could use a View object with colored background to draw a line.

<View
   android:width="match_parent"
   android:height="1dp"
   android:background="#000000" />

How can we draw a horizontal or vertical line in Jetpack compose?

Upvotes: 79

Views: 61003

Answers (2)

Rajnish suryavanshi
Rajnish suryavanshi

Reputation: 3404

You can use

HorizontalDivider Composable

method for Horizontal line like below.

HorizontalDivider(color = Color.Blue, thickness = 1.dp)

Example :

@Composable
fun drawLine(){
    MaterialTheme {

        VerticalScroller{
            Column(modifier = Spacing(16.dp), mainAxisSize = LayoutSize.Expand) {

                (0..3).forEachIndexed { index, i ->
                    Text(
                        text = "Draw Line !",
                        style = TextStyle(color = Color.DarkGray, fontSize = 22.sp)
                    )

                    HorizontalDivider(color = Color.Blue, thickness = 2.dp)

                }
            }
        }

    }

}

Upvotes: 135

Valeriy Katkov
Valeriy Katkov

Reputation: 40582

To draw a line you can use the built-in androidx.compose.material.Divider if you use androidx.compose.material or create your own using the same approach that the material divider does:

Horizontal line

Column(
    // forces the column to be as wide as the widest child,
    // use .fillMaxWidth() to fill the parent instead
    // https://developer.android.com/jetpack/compose/layout#intrinsic-measurements
    modifier = Modifier.width(IntrinsicSize.Max)
) {
    Text("one", Modifier.padding(4.dp))

    // use the material divider
    Divider(color = Color.Red, thickness = 1.dp)

    Text("two", Modifier.padding(4.dp))

    // or replace it with a custom one
    Box(
        modifier = Modifier
            .fillMaxWidth()
            .height(1.dp)
            .background(color = Color.Red)
    )

    Text("three", Modifier.padding(4.dp))
}

enter image description here

Vertical line

Row(
    // forces the row to be as tall as the tallest child,
    // use .fillMaxHeight() to fill the parent instead
    // https://developer.android.com/jetpack/compose/layout#intrinsic-measurements
    modifier = Modifier.height(IntrinsicSize.Min)
) {
    Text("one", Modifier.padding(4.dp))

    // use the material divider
    Divider(
        color = Color.Red,
        modifier = Modifier
            .fillMaxHeight()
            .width(1.dp)
    )

    Text("two", Modifier.padding(4.dp))

    // or replace it with a custom one
    Box(
        modifier = Modifier
            .fillMaxHeight()
            .width(1.dp)
            .background(color = Color.Red)
    )

    Text("three", Modifier.padding(4.dp))
}

enter image description here

Upvotes: 45

Related Questions