im creating a view using jetpack-compose. i have a view and i want it to be align to right of the Box. i don't want to use end or start. how to do it? i saw absoluteAlignment but its not working
modifier = Modifier.align(AbsoluteAlignment.Left)
one solution was:
CompositionLocalProvider(LocalLayoutDirection provides LayoutDirection.Rtl) {
// Add your app composable elements here
}
and use start and end based on that. but i want to know if there is any posibility to use RIGHT or LEFT directly.