I am looking to design a screen that features nested views using the *ngFor loop. The data I have is in a two-dimensional array format and I want to iterate through it to display the same view for each row within each section. It should look something like this:
(SectionName 1)
Row1
Row2
(SectionName 2)
Row1
Row2
For each row, I plan on using ion-item with buttons and input boxes.
If you have any insights on how to achieve a 2-dimensional repeated UI, please share them with me.
Thank you!