|
|
@ -8,6 +8,8 @@ import { Provider } from "react-redux"; |
|
|
|
import { store, persistor } from "./src/redux/store"; |
|
|
|
import { store, persistor } from "./src/redux/store"; |
|
|
|
import React from "react"; |
|
|
|
import React from "react"; |
|
|
|
import { PersistGate } from "redux-persist/integration/react"; |
|
|
|
import { PersistGate } from "redux-persist/integration/react"; |
|
|
|
|
|
|
|
import { copilot } from "react-native-copilot"; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const App = () => { |
|
|
|
const App = () => { |
|
|
|
const [appIsReady, setAppIsReady] = React.useState(false); |
|
|
|
const [appIsReady, setAppIsReady] = React.useState(false); |
|
|
@ -60,6 +62,11 @@ const App = () => { |
|
|
|
); |
|
|
|
); |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
const styles = StyleSheet.create({}); |
|
|
|
export default copilot({ |
|
|
|
|
|
|
|
labels: { |
|
|
|
export default App; |
|
|
|
previous: "قبلی", |
|
|
|
|
|
|
|
next: "بعدی", |
|
|
|
|
|
|
|
skip: "رد کردن", |
|
|
|
|
|
|
|
finish: "پایان", |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
})(App); |
|
|
|