1234567891011121314151617181920 |
- import React, { PureComponent } from 'react';
- import { StyleSheet, Text, View, Image, TouchableOpacity, StatusBar, ToastAndroid, TextInput } from 'react-native';
- import BasePage from './BasePage';
- import SplashScreen from 'react-native-splash-screen';
- export default class Splash extends BasePage {
- render() {
- return (
- <View style={{ flex: 1 }}>
- <StatusBar backgroundColor={'transparent'} translucent={true} />
- </View>
- );
- }
- componentDidMount() {
- setTimeout(() => {
- SplashScreen.hide();
- this.clearPageToNext('Login');
- }, 3000);
- }
- }
|