Ricardo C.
05/28/2020, 5:38 PMhenrikhorbovyi
05/28/2020, 5:53 PMRay Ryan
05/28/2020, 6:41 PMRicardo C.
05/28/2020, 6:56 PMKazemihabib1996
05/28/2020, 7:12 PMPadding(8.dp) {
Text("Hello")
}
is obvious but what about
Padding(8.dp) {
Text("Hello")
Text("Bye")
}
With assumption that they will be position next to each other, in this situation it's not obvious that padding is around all of it or around each one.
with modifiers
Row(Modifier.padding(8.dp)) {
Text("hello")
Text("World")
}
the meaning of the applied padding is obvious.Zach Klippenstein (he/him) [MOD]
05/28/2020, 7:32 PMRicardo C.
05/28/2020, 7:57 PMZach Klippenstein (he/him) [MOD]
05/28/2020, 9:17 PMcaelum19
05/28/2020, 10:36 PM