I want to set a direction of a specific composable to be RTL
@Composable
fun ViewToBeChanged() {
Row {
Image()
Column {
Text("Title")
Text("Subtitle")
}
}
}
Is it possible?
Jetpack compose Layout documentation mentions LocalLayoutDirection
Change the layout direction of a composable by changing the
LocalLayoutDirectioncompositionLocal.
But I have no idea how to use it in a composable to take effect.

