I am having two `Text()`composable in a `column`, ...
# compose
v
I am having two `Text()`composable in a
column
, can I control the vertical spacing between them, is there a way
or is there some default padding to
Text
, I think not
I am getting more spacing between them, I am not using
Spacer
tho
z
You can pass a
verticalArrangement
v
@Zach Klippenstein (he/him) [MOD] I used
Copy code
Arrangement.spacedBy((-10).dp)
, this is reducing the space, but is it normal thing to pass -10 dp value 😅
z
Oh, you’re trying to get rid of the padding, I see. If you don’t want to use the material text control, you can use BasicText which doesn’t have any extra decorations or padding
v
yeah thanks, it works fine now