次のエラーで正常に実行できませんでした:
Cannot find a parameter with this name: crossAxisSize
どうすれば修正できますか?これが私のコードです:
@Composable
fun NewsStory() {
Column(
crossAxisSize = LayoutSize.Expand,
modifier=Spacing(16.dp)
)
{
Text("demo")
Text("try")
Text("somethings")
}
}