↧
Answer by Nooruddin Lakhani for How to refer to a single element of a mapped...
You can create method in constant utility to define defaultArray like getDefaultArray(arrayNav){ return [ { id:'0', label: arrayNav.label1, showViewBelow: false }, { id:'1', label: arrayNav.label2,...
View ArticleHow to refer to a single element of a mapped array to render a View
I've got an array of object. I mapped it to render it like a list with a label and an icon button. I need to show another View below the element of the row when I hit the button. The array of object...
View Article