February 14, 2019 / by STW Services / Javascript frameworks, Reactnative / 0 comments
Post Views: 702 Design Video List Component : Part 6- Create a components folder in src folder and add VideoList.js file in it, open this file and start importing component import React, { Component } from ‘react’; import { View, Text } from ‘react-native’; import CardWrapper from ‘../common/CardWrapper’; import CardInner from ‘../common/CardInner’; class VideoList extends Component { render() { […]
Read more
Design Video List Component : Part 6
February 14, 2019 / by STW Services / Javascript frameworks, Reactnative / 0 comments
Post Views: 702 Design Video List Component : Part 6- Create a components folder in src folder and add VideoList.js file in it, open this file and start importing component import React, { Component } from ‘react’; import { View, Text } from ‘react-native’; import CardWrapper from ‘../common/CardWrapper’; import CardInner from ‘../common/CardInner’; class VideoList extends Component { render() { […]
Read more
Process to get data from Youtube XML : Part 7
February 4, 2019 / by Sandeep Mishra / Javascript frameworks, Reactnative / 0 comments
Post Views: 852 Process To Get Data From Youtube – If you will see youtube video.xml url, there are many xml node. We need only all video id , thumbnail url to display image and Title to show on top of Card XML display data different way than Json. So first we parse xml data […]
Read more