Jetpack Compose 容器在哪里?
Where is Jetpack Compose Container?
我从一些教程中阅读了容器
- https://joebirch.co/android/exploring-jetpack-compose-container/
- https://levelup.gitconnected.com/jetpack-compose-container-layout-183e655518f2
编码如下
@Composable
fun Container(
modifier: Modifier = Modifier.None,
padding: EdgeInsets = EdgeInsets(0.dp),
alignment: Alignment = Alignment.Center,
expanded: Boolean = false,
constraints: DpConstraints = DpConstraints(),
width: Dp? = null,
height: Dp? = null,
children: @Composable() () -> Unit
)
最近在探索 Jetpack Compose 1.0.0-alpha07
时,再也看不到它了。它不再受支持还是我错过了什么?
我已经包含了所有可能的库,但它没有显示。
implementation 'androidx.compose.ui:ui:1.0.0-alpha07'
// Tooling support (Previews, etc.)
implementation 'androidx.ui:ui-tooling:1.0.0-alpha07'
// Foundation (Border, Background, Box, Image, Scroll, shapes, animations, etc.)
implementation 'androidx.compose.foundation:foundation:1.0.0-alpha07'
// Material Design
implementation 'androidx.compose.material:material:1.0.0-alpha07'
// Material design icons
implementation 'androidx.compose.material:material-icons-core:1.0.0-alpha07'
implementation 'androidx.compose.material:material-icons-extended:1.0.0-alpha07'
// Integration with observables
implementation 'androidx.compose.runtime:runtime-livedata:1.0.0-alpha07'
implementation 'androidx.compose.runtime:runtime-rxjava2:1.0.0-alpha07'
你好容器已被删除。您可以改用 Box。
androidx.ui: ui - *: 在 0.1.0-dev11 版本中移除。
我从一些教程中阅读了容器
- https://joebirch.co/android/exploring-jetpack-compose-container/
- https://levelup.gitconnected.com/jetpack-compose-container-layout-183e655518f2
编码如下
@Composable
fun Container(
modifier: Modifier = Modifier.None,
padding: EdgeInsets = EdgeInsets(0.dp),
alignment: Alignment = Alignment.Center,
expanded: Boolean = false,
constraints: DpConstraints = DpConstraints(),
width: Dp? = null,
height: Dp? = null,
children: @Composable() () -> Unit
)
最近在探索 Jetpack Compose 1.0.0-alpha07
时,再也看不到它了。它不再受支持还是我错过了什么?
我已经包含了所有可能的库,但它没有显示。
implementation 'androidx.compose.ui:ui:1.0.0-alpha07'
// Tooling support (Previews, etc.)
implementation 'androidx.ui:ui-tooling:1.0.0-alpha07'
// Foundation (Border, Background, Box, Image, Scroll, shapes, animations, etc.)
implementation 'androidx.compose.foundation:foundation:1.0.0-alpha07'
// Material Design
implementation 'androidx.compose.material:material:1.0.0-alpha07'
// Material design icons
implementation 'androidx.compose.material:material-icons-core:1.0.0-alpha07'
implementation 'androidx.compose.material:material-icons-extended:1.0.0-alpha07'
// Integration with observables
implementation 'androidx.compose.runtime:runtime-livedata:1.0.0-alpha07'
implementation 'androidx.compose.runtime:runtime-rxjava2:1.0.0-alpha07'
你好容器已被删除。您可以改用 Box。
androidx.ui: ui - *: 在 0.1.0-dev11 版本中移除。