Is there any way to seperate Glance import and Com...
# glance
c
Is there any way to seperate Glance import and Compose import? I always need to select one of them when I code... I also make Widget so I use both of them.
w
I think the best way is just to keep them in separate files, so the imports names do not clash. You could also use fully qualified names everywhere (e.g.
androidx.glance.Button
) or import aliases (e.g.
import androidx.glance.Button as GlanceButton
) but that will probably be too tedious