Posts

Showing posts from September, 2017

React Native list View

import React, { Component } from 'react'; import {     Button,     StyleSheet,     Text,     images,     ListView,     ActivityIndicator,     View, } from 'react-native'; export default class Profile extends React.Component {     constructor(props) {         super(props);         this.state = {             dataSource: new ListView.DataSource({                 rowHasChanged: (row1, row2) => row1 !== row2,             }),             isLoding: false,         };     }     componentDidMount() {         fetch("http://localhost:53554/api/TaskApi/GetTasks?username=kathiravalan421")             .then((response) => response.json())...