Button to resize all images from a list

Hi everyone,

When passing a list to st.image, I only get the option to resize/enter full screen mode on the first image only, is there a way to be able to enter full screen for every image from the list?

imgs = ['1.JPG', '2.JPG', '3.JPG', '4.JPG']
st.image(imgs, use_column_width=True)

By “resizing/full screen” I mean the little arrows in the top-right corner of the image:

I have never worked on image lists, but as far as I see, you are combining them into one object, so streamlit sees it as one object and results in one full-screen arrow.
You may want to use beta_columns and a for loop to iterate through the list.