I am trying to show a list of images that are the result of a query in the form of a carousel.
So I have a query returning a list of documents (from collection "Pictures"), each containing an ImagePath. This query is done on the Carousel widget:
Then the image path of the images in the carousel is set to the URL stored in the documents that were returned in the query
Seems like a logical way to do this, but I am getting the following bug:
Carousel widget with the current configuration will not function properly when generated dynamically at the moment (because it is associated with a local state variable). Consider wrapping it inside of a component and then generate the component dynamically.
Anyone familiar with this?