Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试来自https://developer.android.com的本教程。代码图像 但我无法导入 HeightSpacer。HeightSpacer 是否已弃用?我找不到任何新的替代品吗?谢谢你。
您可以将 aSpacer与height修饰符或您喜欢的任何其他修饰符一起使用。例如:
Spacer
height
Spacer(modifier = Modifier.height(16.dp))
LayoutHeight已弃用。改用这个:
LayoutHeight
Spacer(modifier = Modifier.preferredHeight(16.dp))