Hi @shoebwk ,
You can do this:
Add the images into your media if you want them as part of the App. Browse and add each one and note its name.
Create an Image control.
Add navigation arrows and/or navigation bubbles.
Use the actions of the navigation controls to "rotate" (choose the next or previous) the image in the control.
You could set an easy collection with the images and then keep a pointer to current.
Here is what I have done:
Someplace...OnVisible or other place:
Collect(imgList,
{img:imgName1, order:1},
{img:imgName2, order:2},
{img:imgName3, order:3});
UpdateContext{currentImg:1})
In your image control Image property:
Lookup(imgList, order=currentImg).Img
In your right arrow navigation:
UpdateContext({currentImg:If(currentImg=Max(imgList, order), 1, currentImg+1)})
In your left arror navigation:
UpdateContext({currentImg:If(currentImg=1, Max(imgs, order), currentImg-1)})
See the below original thread which shows this code:
https://powerusers.microsoft.com/t5/Building-Power-Apps/How-to-add-an-image-carousel/td-p/236172
I hope this resolved your issue if you see any challenge/need further help please let me know I am always happy to do it for my community.
Regards,
Krishna
If this post helps you give a 👍 and if it solved your issue consider Accept it as the solution to help the other members find it more.