Commit c701b74a authored by dsq's avatar dsq

越界崩溃

parent d4f81780
...@@ -130,6 +130,27 @@ internal fun HomeScreen( ...@@ -130,6 +130,27 @@ internal fun HomeScreen(
} }
} }
Column(
modifier = Modifier.fillMaxWidth(),
verticalArrangement = Arrangement.spacedBy(8.dp)
) {
Button(
onClick = {
val logDemo = ComponentDemo(
id = "log_over_demo",
title = "越界日志",
group = ComposeGroup.Foundation
)
onSelect(logDemo)
},
modifier = Modifier.fillMaxWidth()
) {
Text("进入越界日志测试")
}
}
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment