// @flow
import React from 'react';
import { View, ViewPagerAndroid } from 'react-native';
import { MeetingList } from '../../calendar-sync';
import { RecentList } from '../../recent-list';
import AbstractPagedList, { DEFAULT_PAGE } from './AbstractPagedList';
import styles from './styles';
/**
* A platform specific component to render a paged or tabbed list/view.
*
* @extends PagedList
*/
export default class PagedList extends AbstractPagedList {
/**
* Constructor of the PagedList Component.
*
* @inheritdoc
*/
constructor(props) {
super(props);
this._getIndicatorStyle = this._getIndicatorStyle.bind(this);
this._onPageSelected = this._onPageSelected.bind(this);
}
/**
* Renders the paged list.
*
* @inheritdoc
*/
render() {
const { disabled } = this.props;
return (
);
}
_getIndicatorStyle: number => Array