|

How to change Image Brightness in Android Jetpack Compose

Sometimes, you may want to tweak the default brightness of images in your Android app. In this blog post, let’s learn how to change the brightness of an image in Jetpack Compose. Before proceeding, the following is the image I am going to use in this tutorial. The Image composable has many useful parameters and…

|

How to Blur an Image in Android Jetpack Compose

Sometimes, you may want to blur images in your mobile app. In this Android tutorial, let’s learn how to blur an image easily in Jetpack Compose. Most of the composables including the Image have a modifier parameter and we can use the Modifier.blur to add a blur effect to the images. See the following code…

|

How to Center Crop an Image in Android Jetpack Compose

Sometimes, you may want to show an image after the center crop in your app. In this blog post, let’s check how to center crop an image in Jetpack Compose. The Image composable has many properties for customization. The contentScale option is one among them. By default the Image composable use ContentScale.Fit. In order to…

|

How to Display Image in Black and White Color in Android Jetpack Compose

Displaying images in black and white can be a great way to add a touch of elegance or nostalgia to your app, and it’s easy to do using Jetpack Compose. In this blog post let’s learn how to show an image in black and white. The Image composable has some useful parameters and the colorFilter…

|

How to set Image Aspect Ratio in Android Jetpack Compose

The aspect ratio is the proportion of an image’s width to its height. It plays a crucial role in the design of a mobile app as it determines how an image will be displayed on different screen sizes and orientations. In this blog post, let’s learn how to set the aspect ratio to an image…

|

How to set Image Tint Color in Android Jetpack Compose

Jetpack Compose is a modern, reactive, and declarative framework for building efficient and beautiful UI for Android. It is easy to create and customize the look of your app with Jetpack Compose. In this blog post, let’s learn how to change the image tint color in Jetpack Compose. The Image composable is used to display…

How to change Background Color of Row and Column in Android Jetpack Compose
|

How to change Background Color of Row and Column in Android Jetpack Compose

Row and Column are two important composables to create a mobile app layout using Jetpack Compose. Row composable helps to arrange the content horizontally whereas Column arranges child elements vertically. Let’s check how to change the default background color of Row and Column in Jetpack Compose. Jetpack Compose Row Background Color You can customize the…

How to make Row Clickable in Android Jetpack Compose
|

How to make Row Clickable in Android Jetpack Compose

The Row is an important composable and its significance in building layouts is very high. It helps to arrange child elements horizontally. Sometimes, app developers want to make Row clickable in Jetpack Compose. Modifier.clickable is used to make Row composable clickable. In the following code snippet, when the Row is clicked a Toast message is…

How to Make Column Clickable in Android Jetpack Compose
|

How to Make Column Clickable in Android Jetpack Compose

Column composable helps to arrange child content vertically in Jetpack Compose. Sometimes, you may want to make the Column clickable to add further functionality to the mobile app. Let’s learn how to make Column clickable easily in Jetpack Compose. In Jetpack Compose, you can make composables clickable using Modifier.clickable{}. See the following code snippet where…

How to Create Column with Rounded Corners in Jetpack Compose
|

How to Create Column with Rounded Corners in Jetpack Compose

The Column is one of the most used composable in Jetpack Compose. It allows to align the content vertically in a layout. In this Jetpack Compose tutorial, let’s learn how to add a Column with rounded corners easily. The rounded corners can make UI components beautiful. You can create rounded corners with the help of…

How to set Elevation to Column in Android Jetpack Compose
|

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…

How to Change TextField Indicator Color in Android Jetpack Compose
|

How to Change TextField Indicator Color in Android Jetpack Compose

An indicator line in a TextField serves multiple purposes in a user interface. It indicates focus, error, and even disabled states. Knowing how to change these indicator colors can make your app more intuitive and visually appealing. In this tutorial, we’ll walk you through the steps to customize the indicator colors for various states in…