Hi. Is there a way in Compose to pass a container ...
# compose
k
Hi. Is there a way in Compose to pass a container to another method and inflate stuff under that like for ViewGroup in xml
Copy code
viewGroup.addView()
ViewGroup is passed to the method and i am using it as a container now to add more elements. Can i do similar thing in Compose? What i want to achieve is inflate my compose content under Toolbar (which is already created and the dynamic content needs to be added under that in later stage based on conditions and states)
c
Maybe moveableContentOf can help?