Tolriq
07/12/2023, 6:41 AMWindowInsets.navigationBars.asPaddingValues()
With values like 20.933334 dp, that will generate rounding errors later. It does not seems that there's any round/ceil helper for dp and we need to get the value then round then wrap to dp again? No better way?Alex Vanyo
07/12/2023, 4:39 PMdp
because of different densitiesTolriq
07/12/2023, 4:54 PMTolriq
07/12/2023, 4:54 PMTolriq
07/12/2023, 4:55 PMAlex Vanyo
07/12/2023, 5:07 PMColumn {
Spacer(Modifier.height(10.dp))
Spacer(Modifier.height(10.dp))
Spacer(Modifier.height(10.dp))
}
and
Column {
Spacer(Modifier.height(30.dp))
}
might not result in the same height depending on the densityTolriq
07/12/2023, 5:21 PMTolriq
07/12/2023, 5:23 PMAlex Vanyo
07/12/2023, 5:34 PMTolriq
07/12/2023, 5:39 PMTolriq
07/12/2023, 5:42 PMColton Idle
07/13/2023, 5:03 PMTolriq
07/13/2023, 5:06 PMTolriq
07/13/2023, 5:07 PMAlex Vanyo
07/13/2023, 7:15 PMTolriq
07/13/2023, 7:24 PMAlex Vanyo
07/13/2023, 7:27 PMTolriq
07/13/2023, 7:30 PMTolriq
07/13/2023, 7:31 PMTolriq
07/13/2023, 7:34 PMAlex Vanyo
07/13/2023, 10:23 PMTolriq
07/14/2023, 5:44 AM