I am Migrating from Insets to androidx.compose.fo...
# compose
s
I am Migrating from Insets to androidx.compose.foundation insets support, previously it was
statusBarsHeight(56.dp)
and now it's
.windowInsetsTopHeight(WindowInsets.statusBars.add(WindowInsets(top = 56.dp, bottom = 56.dp)))
is it correct? i feel Insets was more readable.