I'm trying to write an application to my phone. I use the code from the react-native-rss-parser example.
import * as rssParser from 'react-native-rss-parser';
return fetch('http://www.kbgau.ru/rss.php')
.then((response) => response.text())
.then((responseData) => rssParser.parse(responseData))
.then((rss) => {
console.log(rss.title);
console.log(rss.items.length);
});
how to correctly display text from rss to Text from View Need display item.title, item.link, item,enclosure url image Help plz!!!