How to set Elevation to Column in Android Jetpack Compose
The elevation is an important design concept of material design. Column composable helps to create a layout with child components arranged vertically. Let’s check how to add elevation to the Column in Jetpack Compose. You can show shadow around the Column using the modifier parameter and Modifier.shadow. You can give a predefined value and it…