In our app, we have created a Gallery style of page where we can display several groups of photos, say, grouped by date. We must deal with a variable number of dates and each date can have one or more photos.
Currently we display the photos for each Date in it's own FlexLayout row. This is managed in code. A FlexLayout row is created for each Date that we have photos for and then the Photos for the row are added to it. This works for us.
We have a new requirement to perform a multi-select of the desired photos from all the photos available. We need to indicate which photos have been selected either by putting a check in a box or changing a border color - or some other method.
Is there a way to accomplish this using a FlexLayout? Or do we need to switch to something like a CollectionView?
Can this be done all in Xaml or do we need to use Code to work with the variable nature of the number of Dates (rows) and number of Photos for a Date.
Thanks!
