Skip to content

Commit

Permalink
Fix extended listview
Browse files Browse the repository at this point in the history
  • Loading branch information
terrysahaidak committed Jun 24, 2017
1 parent 2360630 commit 07afcf9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion app/screens/Room/MessagesList/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import PropTypes from 'prop-types'
import React, { Component } from 'react'
import {View, ListView, ScrollView} from 'react-native'
import {View, ScrollView} from 'react-native'
import _ from 'lodash'
import ListView from '../../../../libs/ListView/ExtendedListView'
import moment from 'moment'
import InvertibleScrollView from 'react-native-invertible-scroll-view'
import ScrollToTop from '../../../components/ScrollToTop'
Expand Down
2 changes: 1 addition & 1 deletion libs/ListView/ExtendedListView.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
var ListViewDataSource = require('ListViewDataSource');
const PropTypes = require('prop-types');
var React = require('React');
var ReactNative = require('react/lib/ReactNative');
var ReactNative = require('ReactNative');
var RCTScrollViewManager = require('NativeModules').ScrollViewManager;
var ScrollView = require('ScrollView');
var ScrollResponder = require('ScrollResponder');
Expand Down

0 comments on commit 07afcf9

Please sign in to comment.