Compose 利用工具加快开发速度

539 阅读1分钟

Accelerate development: Compose tooling - MAD Skills

了解如何使用 Android Studio 中的 Compose 专用工具加速应用开发。

1. Live templates

image.png

  • comp: Create @Composable function

  • WR: Surround with Row

  • WC: Surround with Column

  • prev: Create @Preview composable function

...

2. Gutter icons

image.png

3. @Preview

@Preview
@Composable
fun MyAppPreview() {
    BasicsCodelabTheme {
        MyApp(Modifier.fillMaxSize())
    }
}

image.png

4. Layout inspector

image.png

Load Overlay

image.png

image.png

5. Live edit of literals & Live edit

allow us to see code updates in real time.

迭代代码开发

6. Summary

image.png