2017-05-24 20:11:37 +00:00
|
|
|
import React, { Component } from 'react';
|
|
|
|
import { View, Text } from 'react-native';
|
|
|
|
import { connect } from 'react-redux'
|
2017-06-24 19:06:28 +01:00
|
|
|
import { Log } from 'lib/log.js'
|
|
|
|
import { Folder } from 'lib/models/folder.js'
|
|
|
|
import { ScreenHeader } from 'lib/components/screen-header.js';
|
2017-05-24 20:11:37 +00:00
|
|
|
|
|
|
|
class LoadingScreenComponent extends React.Component {
|
|
|
|
|
2017-06-06 20:01:43 +00:00
|
|
|
static navigationOptions(options) {
|
2017-05-24 20:11:37 +00:00
|
|
|
return { header: null };
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<View style={{flex: 1}}>
|
|
|
|
<Text>Loading...</Text>
|
|
|
|
</View>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
const LoadingScreen = connect(
|
|
|
|
(state) => {
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
)(LoadingScreenComponent)
|
|
|
|
|
|
|
|
export { LoadingScreen };
|