This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 1) APP OLUŞTUR | |
| $ npx @react-native-community/cli@latest init ios_notification_test_9 | |
| $ cd ios_notification_test_9 | |
| $ cd ios && pod install && cd .. | |
| # 2) APP TEST ET |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { t } from "i18next"; | |
| import { Link } from "react-router-dom"; | |
| const TopNav = () => { | |
| document.addEventListener("DOMContentLoaded", function () { | |
| // make it as accordion for smaller screens | |
| if (window.innerWidth < 992) { | |
| // close all inner dropdowns when parent is closed | |
| document.querySelectorAll('.navbar .dropdown').forEach(function (everydropdown) { |