how to two foreach loops to check list data ui id not match flutter code example
Example: flutter iterate over list widget
Widget getTextWidgets(List<String> strings)
{
return new Row(children: strings.map((item) => new Text(item)).toList());
}