Is it possible to get the actual widget width/heig...
# glance
k
Is it possible to get the actual widget width/height in runtime and use it to size your glance composables? I can see `LocalSize.current.width/height`but this gives you the minimum available size from the
appwidget-provider
xml file, which is not the same, right? The reason I need it is because I want a glance composable to get e.g., 2/3 the size of its “parent” glance composable, but there is no
weight
GlanceModifier at the moment.
defaultWeight
only gives you the ability to get 1/n the size of the parent as far as I see.