Creating an image gallery in Anvil - Anvil Q&A - Anvil Community Forum

PHOTO EMBED

Fri Dec 29 2023 01:42:27 GMT+0000 (Coordinated Universal Time)

Saved by @webdeveloper_

rows_to_display=app_tables.images.search()
for row in rows_to_display:
   L=LinearPanel()
   L.add_component(Image(source=row['Image']))
   L.add_component(Label(text=row['title']))
   L.add_component(Label(text=row['info']))
   self.flow_panel_1.add_component(L)
content_copyCOPY

https://anvil.works/forum/t/creating-an-image-gallery-in-anvil/11236