Need some help . How can i archiv this layout
# compose
i
Need some help . How can i archiv this layout
1
l
Copy code
Box(
    modifier = Modifier
        .fillMaxWidth()
        .aspectRatio(16.0f / 9.0f)
        .background(Black)
        .padding(/* ... */)
) {
    Text(
        text = "title →",
        modifier = Modifier.fillMaxWidth(0.5f)
    )
}
👍 1
z
What font is that? It looks crispy!
🚀 1
i
own company font
💪🏽 1
how can i do the same with a image beside the text left (column with 50% and right image(50 %) with 1:1 Ratio)