/* eslint-disable react/jsx-no-bind */
// import { DrawerActions } from '../../components';
import { NavigationActions } from '@bluebase/components';
import React from 'react';
import { Button, Text, View } from 'react-native';
// import { MaterialCommunityIcons } from '@expo/vector-icons';
export class Tab2Screen extends React.Component {
static navigationOptions: any = {
// tabBarIcon: () => (
//
// ),
tabBarOptions: {
labelStyle: {
fontSize: 20,
},
tabStyle: {
width: 80,
},
activeTintColor: 'green',
inactiveTintColor: 'yellow',
showIcon: true,
showLabel: false,
pressColor: 'red',
pressOpacity: 80,
iconStyle: {
color: 'red',
},
},
};
render() {
return (
Tab 2 Content
{({ navigate }: any) =>
{/*
{({ toggleDrawer }: any) => (
*/}
);
}
}