diff --git a/App.js b/App.js index 9397478f..035bb58e 100644 --- a/App.js +++ b/App.js @@ -4,6 +4,7 @@ import PropTypes from 'prop-types'; import { Text, ScrollView, StyleSheet } from 'react-native'; import { DrawerNavigator, SafeAreaView } from 'react-navigation'; import MainBottomTabs from './MainBottomTabs'; +import Selftest from './screen/selftest'; require('./BlueApp'); @@ -66,22 +67,10 @@ const TabsInDrawer = DrawerNavigator( }, }, - /* SecondaryBottomTabs: { - screen: SecondaryBottomTabs, - path: 'chat/aaa', - navigationOptions: { - drawer: () => ({ - label: 'SecondaryBottomTabs', - icon: ({ tintColor }) => ( - - ), - }), + Selftest: { + screen: Selftest, + navigationOptions: {}, }, - }, */ }, { contentComponent: CustomDrawerContentComponent, diff --git a/SecondaryBottomTabs.js b/SecondaryBottomTabs.js deleted file mode 100644 index b21a0de4..00000000 --- a/SecondaryBottomTabs.js +++ /dev/null @@ -1,137 +0,0 @@ -/** - * @flow - */ - -import React from 'react'; -import { Button, ScrollView } from 'react-native'; -import { SafeAreaView, StackNavigator, TabNavigator } from 'react-navigation'; -import PropTypes from 'prop-types'; - -import Ionicons from 'react-native-vector-icons/Ionicons'; - -const MyNavScreen = ({ navigation, banner }) => ( - - -