miqbaldc
06/09/2021, 2:41 PMConstraintLayout
integration with Jetpack Compose?
or should we use something like FlowLayout?Modifier.weight
for each column item seems not the right choice either :(Zach Klippenstein (he/him) [MOD]
06/09/2021, 3:30 PMmiqbaldc
06/09/2021, 3:31 PM.sp
& .dp
for smaller DPI?
as stated: https://developer.android.com/training/multiscreen/screensizes#compose-alternative-layoutsIt looks like maybe you just need to use a smaller font size?Agreed Honestly, we’re looking into “automagically” solution that didn’t requires a lot of changes, but looks like still not possible for now(?)
Zach Klippenstein (he/him) [MOD]
06/09/2021, 3:36 PMmiqbaldc
06/09/2021, 3:44 PMfor larger resolution▾
The font should be rendered with the appropriate density on different devicesWe thought this is handled by default in Compose 😞
Zach Klippenstein (he/him) [MOD]
06/09/2021, 3:59 PMmiqbaldc
06/09/2021, 4:04 PMAdam Powell
06/09/2021, 6:29 PMModifier.verticalScroll
to the column that contains all of these form items and be good to gomiqbaldc
06/10/2021, 3:54 AMyou can probably add aahh, thanks for this! 🎉to the column that contains all of these form items and be good to goModifier.verticalScroll
users lower the effective density of their devices for accessibility; they may not be able to read smaller text or accurately touch smaller UI elementscan’t be more agreed with you, we thought we need to have a smaller sizes as well (for smaller resolutions), but
verticalScroll
seems the best choice 🚀Modifier.horizontalScroll
is a way to go as well to have a scrollable horizontal content in the lower resolution, or this is a no go for horizontal scroll in UX?
this for example▾
syarat dan ketentuan
seems brokenAdam Powell
06/10/2021, 2:44 PMmiqbaldc
06/11/2021, 7:35 AMAnnotatedString
and the checkbox labelAnnotatedString
possible to have a click handler on specific styling?