How can i align text to bottom section of a Text component with Jetpack Compose? TextAlign only has Start, End, Left, Center, Right and Justify options.
I want to align text to bottom left or right, how can this be done with Jetpack Compose?
With it's possible to align it's elements but iI want to align Text components whichcomponent's content, each Text has a specific size using modifier.size(x), to align their text to bottom. In the image blue rectangles are Text with different sizes should align the text inside them like in classic Android with it's done with android:gravity.
What i actually wantIt is similar to textAlign = TextAlign.x but for bottom.
Setting alignment from a boxBox aligns TextText inside box likeBox or Modifier.align(Alignment.BottomEnd) in BoxScope does what android:layout_gravity does for views, aligns the Text component, not the content of Text component, you can see the differencedifference here.
