My React Native Journey - 8 - Adding background colors to the Wordle UI
Adding Background Colors to the grid and the keyboard. Import colors from constants.js (provided by Vadim) Adding background colors to the grid Set the background color of the cell, based on the return value of a function getCellBGColor, which takes the letter itself, the current row, and the current column, and returns the color that is expected. < ScrollView style = { styles . map } > { rows . map (( row , i ) => ( < View key = { `row-${ i }` } style = { styles . row } > { row . map (( letter , j ) => ( < View key = { `cell-${ i }-${ j }` } s...