diff --git a/App.js b/App.js index c77164e..515914f 100644 --- a/App.js +++ b/App.js @@ -8,6 +8,8 @@ import { Provider } from "react-redux"; import { store, persistor } from "./src/redux/store"; import React from "react"; import { PersistGate } from "redux-persist/integration/react"; +import { copilot } from "react-native-copilot"; + const App = () => { const [appIsReady, setAppIsReady] = React.useState(false); @@ -60,6 +62,11 @@ const App = () => { ); }; -const styles = StyleSheet.create({}); - -export default App; +export default copilot({ + labels: { + previous: "قبلی", + next: "بعدی", + skip: "رد کردن", + finish: "پایان", + }, +})(App); diff --git a/src/components/Navbar.js b/src/components/Navbar.js index a3d4cef..a5c3801 100644 --- a/src/components/Navbar.js +++ b/src/components/Navbar.js @@ -81,6 +81,7 @@ const Navbar = ({ }, [theme] ); + return (