Skip to content
View trinadhkoya's full-sized avatar
💭
I may be slow to respond.
💭
I may be slow to respond.
Block or Report

Block or report trinadhkoya

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. rn-insta-stories rn-insta-stories Public

    A React Native component to create Instagram/Snapchat like stories on the mobile. It supports both Android and iOS. It provides control over the story duration and loading indicator with cubic tran…

    JavaScript 4

  2. react-native-multistep-forms react-native-multistep-forms Public

    Handling forms in step wise

    JavaScript 4 6

  3. mv-application mv-application Public

    This is a API handler written purely in java to handle requests and responses like volley. It also handles Image caching without using third party library

    Java

  4. How to handle multlple HOC(Higher Or... How to handle multlple HOC(Higher Order Components) to Component in React Native/React
    1
    import {compose} from "redux";
    2
    import {connect} from "react-redux";
    3
    
                  
    4
    const composedHoc = compose(
    5
        connect(mapStateToProps),
  5. ImageOverlay.js ImageOverlay.js
    1
    /**
    2
    Author: Trinadh Koya
    3
    Created:Friday, 26 December 2016
    4
    **/
    5
    
                  
  6. This gist is about checking the auth... This gist is about checking the authentication on every component
    1
    import React, {Component} from 'react'
    2
    import {connect} from 'react-redux'
    3
    
                  
    4
    export default function (ComposedComponent) {
    5
      class Authentication extends Component {