mirror of
https://github.com/BetterAndroid/compose-multiplatform-template.git
synced 2025-09-03 17:25:31 +08:00
style: some tweaks
This commit is contained in:
@@ -72,11 +72,11 @@ fun MainScreen() {
|
||||
NecessarySpacer()
|
||||
Button(
|
||||
onClick = { greeting = "Hello Jetpack Compose Multiplatform!" }
|
||||
) { Text(text = "Greeting") }
|
||||
) { Text("Greeting") }
|
||||
NecessarySpacer()
|
||||
Button(
|
||||
onClick = { hideOrShowBars = !hideOrShowBars }
|
||||
) { Text(text = "Trigger SystemBars") }
|
||||
) { Text("Trigger SystemBars") }
|
||||
}
|
||||
LaunchedEffect(hideOrShowBars) {
|
||||
if (hideOrShowBars)
|
||||
|
Reference in New Issue
Block a user