How can I specify a textSize for all text elements within a Column / Row?
I have difficulty finding a method, which helps me doing something like the UnspecifiedFontSize
(pseudo code):
Row {
UnspecifiedFontSize(size= 128.dp) {
Text("ping")
Text("pong")
}
}