import React from 'react'; import { LayoutAnimation, View, StyleSheet, StatusBar, Text, } from 'react-native'; import { SafeAreaView, createMaterialTopTabNavigator } from 'react-navigation'; import Ionicons from 'react-native-vector-icons/Ionicons'; import { Button } from './commonComponents/ButtonWithMargin'; class MyHomeScreen extends React.Component { static navigationOptions = { tabBarLabel: 'Home', tabBarIcon: ({ tintColor, focused, horizontal }) => ( ), }; render() { const { navigation } = this.props; return ( Home Screen