is there hot reload in Jetpack like flutter?

Viewed 1852

any idea to make android studio Jetpack compose auto refresh like Hot reload in Flutter it's annoying! Is there Auto-refresh in Jetpack Compose viewer?

1 Answers

Right now, compose does not support Hot reloads. But Literals values can be updated directly.

Some supported types.

Int

String

Color

Dp

Boolean

enter image description here

You can view constant literals that trigger real-time updates without the compilation step by enabling these highlighted values.

enter image description here

Reference

Related