-
Notifications
You must be signed in to change notification settings - Fork 2
/
App.js
31 lines (29 loc) · 1.42 KB
/
App.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import React, { Component } from 'react';
import ChatBotWindow from './components/chatBot_Window'
import WelcomeWindow from './components/Welcome_Window'
import WhatSAppSendMessageWindow from './components/Option-Component/Send-Message-WhatsApp/sendMessage'
import PrivateMode from './components/Private-Mode/privateMode'
import Settings from './components/Option-Component/Settings/settings'
import ShowContacts from './components/Option-Component/Show-Contacts/showContacts'
import ShowQuestions from './components/Option-Component/showQuestions/showQuestions'
import { Router, Scene } from "react-native-router-flux";
import { StatusBar, View } from 'react-native'
import { createStackNavigator } from '@react-navigation/stack';
const Stack = createStackNavigator();
export default class App extends Component {
render() {
return (
<Router>
<Scene key="root" hideNavBar>
<Scene key="Welcome_Window" component={WelcomeWindow} inital />
<Scene key="VoiceAssistant_Window" component={ChatBotWindow} />
<Scene key="WhatsAppSendMessage_Window" component={WhatSAppSendMessageWindow} />
<Scene key="PrivateMode_Window" component={PrivateMode} />
<Scene key="Settings_Window" component={Settings} />
<Scene key="ShowContacts_Window" component={ShowContacts} />
<Scene key="ShowQuestions_Window" component={ShowQuestions} />
</Scene>
</Router>
)
}
}