Skip to content

Commit

Permalink
Merge branch 'main' into renovate-updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Mr3zee authored Sep 9, 2024
2 parents 9c87267 + 0a4750b commit ba9a010
Showing 1 changed file with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ import kotlinx.rpc.transport.ktor.client.rpc
import kotlinx.rpc.transport.ktor.client.rpcConfig
import ktor_all_platforms_app.composeapp.generated.resources.Res
import ktor_all_platforms_app.composeapp.generated.resources.compose_multiplatform
import org.jetbrains.compose.resources.ExperimentalResourceApi
import org.jetbrains.compose.resources.painterResource

expect val DEV_SERVER_HOST: String
Expand All @@ -33,7 +32,6 @@ val client by lazy {
}
}

@OptIn(ExperimentalResourceApi::class)
@Composable
fun App() {
var serviceOrNull: UserService? by remember { mutableStateOf(null) }
Expand Down Expand Up @@ -61,7 +59,10 @@ fun App() {
val news = remember { mutableStateListOf<String>() }

LaunchedEffect(service) {
greeting = service.hello("User from ${getPlatform().name} platform", UserData("Berlin", "Smith"))
greeting = service.hello(
"User from ${getPlatform().name} platform",
UserData("Berlin", "Smith")
)
}

LaunchedEffect(service) {
Expand Down Expand Up @@ -91,7 +92,10 @@ fun App() {
}

AnimatedVisibility(showIcon) {
Column(Modifier.fillMaxWidth(), horizontalAlignment = Alignment.CenterHorizontally) {
Column(
Modifier.fillMaxWidth(),
horizontalAlignment = Alignment.CenterHorizontally
) {
Image(painterResource(Res.drawable.compose_multiplatform), null)
}
}
Expand Down

0 comments on commit ba9a010

Please sign in to comment.