Offset the content by ([x] dp, [y] dp).
AbsoluteOffsetModifier
@Composable
fun AbsoluteOffsetModifier() {
// This text will be offset (10.dp, 20.dp) from the center of the available space.
Text(
"Layout offset modifier sample",
Modifier.fillMaxSize().wrapContentSize(Alignment.Center).absoluteOffset(10.dp, 20.dp),
)
}
AbsoluteOffsetPxModifier
@Composable
fun AbsoluteOffsetPxModifier() {
// This text will be offset in steps of 10.dp from the top left of the available space.
var offset by remember { mutableStateOf(0) }
Text(
"Layout offset modifier sample",
Modifier.clickable { offset += 10 }.absoluteOffset { IntOffset(offset, offset) },
)
}