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
Blazor – Best Framework for application development
August 11, 2020 / by Sandeep Mishra / Hybrid development, Javascript frameworks / 0 comments
Post Views: 3,185
Read more
Flutter: The future of hybrid mobile development
July 9, 2020 / by Sandeep Mishra / Hybrid development, Javascript frameworks / 0 comments
Post Views: 997 Mobile app and web development is one of the most challenging tasks today. With the competition to represent almost every company on the digital front constantly increasing, be it a mobile application or web platforms, developers today are expected to work smarter and more efficiently to develop ideas. With the need of […]
Read more
Why is Java Script considered as the future?
August 9, 2019 / by Sandeep Mishra / Javascript frameworks / 0 comments
Post Views: 951 Java Script is a light weight, object-oriented programming language with top built-in functions and is best known as a scripting language for webpages. But, it is also used in many non-browsing environments as well. Java Script is ruling the digital world today. Web pages, mobile apps, cloud services, IOT Devices – they […]
Read more
React Native Installation iOS and Windows : Part 1
May 8, 2019 / by Sandeep Mishra / Javascript frameworks, Reactnative / 0 comments
Post Views: 946 React Native Installation iOS and Windows : Part 1- We often need to list youtube video of a playlist and play it in Android and IOS App . Youtube easily provide data in xml by playlist id. Here I am going to explain how to parse video xml and play video using […]
Read more
Registering Component in React Native : Part 2
April 16, 2019 / by Sandeep Mishra / Javascript frameworks, Reactnative / 0 comments
Post Views: 2,637 Registering component process in react native, open your project folder. In root you can see index.js and App.js . In older version files name are index.ios.js and index.android.js. But it does not matter if you are coding for android you can use index.android.js and if you are coding for IOS you can […]
Read more
Header Card Component in React Native : Part 3
April 6, 2019 / by Sandeep Mishra / Javascript frameworks, Reactnative / 0 comments
Post Views: 1,552 Card component use to create Header in react native. Now we will create a common folder for common design component . By Using props and children props we will get data in these design component. Create new folder src in your project folder Now create a new folder common in src folder […]
Read more
Card Design with Props and Children : Part 4
March 15, 2019 / by Sandeep Mishra / Javascript frameworks, Reactnative / 0 comments
Post Views: 839 Card Design is just like to create a boxes to hold Video Title, Video Image and Click button. By Adding some shades border by styling we will add a good design view for all listing. These are common component which we can use many places in app Now we will create Cards […]
Read more
Youtube video XML url : Part 5
March 5, 2019 / by Sandeep Mishra / Javascript frameworks, Reactnative / 0 comments
Post Views: 1,587 Youtube video XML url : Part 5- So open youtube.com and open a play list Search a channel on youtube and open it. You will find a playlist tab . Open that tab and it will display playlist. Click on any play list and you will see url of play list https://www.youtube.com/watch?v=DPbnQFxdpPg&list=LLA34Z3lq8FozSQzDHsSLcmQ […]
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