Using State in Jetpack Compose

Aseem Wangoo
Level Up Coding
Published in
5 min readApr 25, 2021

--

Intro to Jetpack Compose and using state in it

Article here: https://flatteredwithflutter.com/using-state-in-jetpack-compose/

Introduction

Level: Beginner

We will cover briefly about

  1. Jetpack Compose
  2. Create a Custom Card field
  3. Using state in the custom card

Note: Jetpack Compose or Compose are the same.

Using State in Jetpack Compose

Jetpack Compose

What is Jetpack Compose?

As per the documentation,

Jetpack Compose is Android’s modern toolkit for building native UI. It simplifies and accelerates UI development on Android.

Jetpack Compose
  • Compose makes building Android UIs faster and easier
  • There is no need to edit the XML layouts

--

--