Zoltan Demant
02/20/2024, 10:52 AMText
is not centered. Does anyone know why?
AnimatedContent(
modifier = Modifier.fillMaxSize(),
contentAlignment = Center,
targetState = x,
content = { current ->
Text("Center?")
},
)
Jonas
02/20/2024, 10:56 AMJonas
02/20/2024, 10:57 AMModifier.background(Color.Blue)
to the text composable.curioustechizen
02/20/2024, 10:57 AMJonas
02/20/2024, 10:58 AM.wrapContentSize()
Zoltan Demant
02/20/2024, 10:59 AMModifier.fillMaxSize()
is added to my Text
composable?Zoltan Demant
02/20/2024, 10:59 AMJonas
02/20/2024, 11:02 AMZoltan Demant
02/20/2024, 11:03 AMJonas
02/20/2024, 11:05 AMZoltan Demant
02/20/2024, 11:16 AM