├── .DS_Store ├── .expo ├── README.md ├── devices.json ├── prebuild │ └── cached-packages.json └── web │ └── cache │ └── production │ └── images │ ├── android-adaptive-foreground │ └── android-adaptive-foreground-5f4c0a732b6325bf4071d9124d2ae67e037cb24fcc9c482ef82bea742109a3b8-cover-transparent │ │ ├── icon_108.png │ │ ├── icon_162.png │ │ ├── icon_216.png │ │ ├── icon_324.png │ │ └── icon_432.png │ ├── android-standard-circle │ └── android-standard-circle-5f4c0a732b6325bf4071d9124d2ae67e037cb24fcc9c482ef82bea742109a3b8-cover-#ffffff │ │ ├── icon_108.png │ │ ├── icon_162.png │ │ ├── icon_216.png │ │ ├── icon_324.png │ │ └── icon_432.png │ ├── android-standard-square │ └── android-standard-square-5f4c0a732b6325bf4071d9124d2ae67e037cb24fcc9c482ef82bea742109a3b8-cover-#ffffff │ │ ├── icon_108.png │ │ ├── icon_162.png │ │ ├── icon_216.png │ │ ├── icon_324.png │ │ └── icon_432.png │ ├── iconsuniversal-icon │ └── iconsuniversal-icon-74c64047eb557b1341bba7a2831eedde9ddb705e6451a9ad9f5552bf558f13de-cover-#ffffff │ │ └── App-Icon-1024x1024@1x.png │ ├── splash-android │ └── splash-android-bc25a616b4e31cf7300cd97b9cbf8894e855e6373aa797d0badd7e211111c5e5-contain │ │ └── icon_undefined.png │ └── splash-ios │ └── splash-ios-bc25a616b4e31cf7300cd97b9cbf8894e855e6373aa797d0badd7e211111c5e5-contain │ └── icon_undefined.png ├── .gitignore ├── .prettierrc ├── App.jsx ├── README.md ├── android ├── .gitignore ├── app │ ├── build.gradle │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── test │ │ │ └── twiggers │ │ │ └── com │ │ │ └── ReactNativeFlipper.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── test │ │ │ │ └── twiggers │ │ │ │ └── com │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── splashscreen_image.png │ │ │ ├── drawable-mdpi │ │ │ └── splashscreen_image.png │ │ │ ├── drawable-xhdpi │ │ │ └── splashscreen_image.png │ │ │ ├── drawable-xxhdpi │ │ │ └── splashscreen_image.png │ │ │ ├── drawable-xxxhdpi │ │ │ └── splashscreen_image.png │ │ │ ├── drawable │ │ │ ├── rn_edit_text_material.xml │ │ │ └── splashscreen.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-night │ │ │ └── colors.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── release │ │ └── java │ │ └── test │ │ └── twiggers │ │ └── com │ │ └── ReactNativeFlipper.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── assets ├── .DS_Store ├── adaptive-icon.png ├── expo.jpg ├── favicon.png ├── fonts │ ├── Montserrat-Bold.ttf │ └── Montserrat-Regular.ttf ├── icon.png ├── rn.webp ├── splash.png └── users │ ├── .DS_Store │ ├── user1.png │ ├── user2.png │ ├── user3.png │ ├── user4.png │ ├── user5.png │ ├── user6.png │ ├── user7.png │ ├── user8.png │ └── user9.png ├── babel.config.js ├── components ├── Header.jsx ├── NavigationContainer.jsx ├── Post.jsx ├── Story.jsx ├── Tabs.jsx └── ThemeWrapper.jsx ├── index.js ├── ios ├── .gitignore ├── .xcode.env ├── Podfile ├── Podfile.lock ├── Podfile.properties.json ├── ReactNativeThemeSwitcher.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── ReactNativeThemeSwitcher.xcscheme ├── ReactNativeThemeSwitcher.xcworkspace │ └── contents.xcworkspacedata └── ReactNativeThemeSwitcher │ ├── AppDelegate.h │ ├── AppDelegate.mm │ ├── Images.xcassets │ ├── AppIcon.appiconset │ │ ├── App-Icon-1024x1024@1x.png │ │ └── Contents.json │ ├── Contents.json │ ├── SplashScreen.imageset │ │ ├── Contents.json │ │ └── image.png │ └── SplashScreenBackground.imageset │ │ ├── Contents.json │ │ └── image.png │ ├── Info.plist │ ├── ReactNativeThemeSwitcher-Bridging-Header.h │ ├── ReactNativeThemeSwitcher.entitlements │ ├── SplashScreen.storyboard │ ├── Supporting │ └── Expo.plist │ ├── main.m │ └── noop-file.swift ├── metro.config.js ├── package.json ├── store └── store.js ├── utils ├── dimensions.js ├── mmkv.js └── svgs.js └── yarn.lock /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/.DS_Store -------------------------------------------------------------------------------- /.expo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/.expo/README.md -------------------------------------------------------------------------------- /.expo/devices.json: -------------------------------------------------------------------------------- 1 | { 2 | "devices": [] 3 | } 4 | -------------------------------------------------------------------------------- /.expo/prebuild/cached-packages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/.expo/prebuild/cached-packages.json -------------------------------------------------------------------------------- /.expo/web/cache/production/images/android-adaptive-foreground/android-adaptive-foreground-5f4c0a732b6325bf4071d9124d2ae67e037cb24fcc9c482ef82bea742109a3b8-cover-transparent/icon_108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/.expo/web/cache/production/images/android-adaptive-foreground/android-adaptive-foreground-5f4c0a732b6325bf4071d9124d2ae67e037cb24fcc9c482ef82bea742109a3b8-cover-transparent/icon_108.png -------------------------------------------------------------------------------- /.expo/web/cache/production/images/android-adaptive-foreground/android-adaptive-foreground-5f4c0a732b6325bf4071d9124d2ae67e037cb24fcc9c482ef82bea742109a3b8-cover-transparent/icon_162.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/.expo/web/cache/production/images/android-adaptive-foreground/android-adaptive-foreground-5f4c0a732b6325bf4071d9124d2ae67e037cb24fcc9c482ef82bea742109a3b8-cover-transparent/icon_162.png -------------------------------------------------------------------------------- /.expo/web/cache/production/images/android-adaptive-foreground/android-adaptive-foreground-5f4c0a732b6325bf4071d9124d2ae67e037cb24fcc9c482ef82bea742109a3b8-cover-transparent/icon_216.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/.expo/web/cache/production/images/android-adaptive-foreground/android-adaptive-foreground-5f4c0a732b6325bf4071d9124d2ae67e037cb24fcc9c482ef82bea742109a3b8-cover-transparent/icon_216.png -------------------------------------------------------------------------------- /.expo/web/cache/production/images/android-adaptive-foreground/android-adaptive-foreground-5f4c0a732b6325bf4071d9124d2ae67e037cb24fcc9c482ef82bea742109a3b8-cover-transparent/icon_324.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/.expo/web/cache/production/images/android-adaptive-foreground/android-adaptive-foreground-5f4c0a732b6325bf4071d9124d2ae67e037cb24fcc9c482ef82bea742109a3b8-cover-transparent/icon_324.png -------------------------------------------------------------------------------- /.expo/web/cache/production/images/android-adaptive-foreground/android-adaptive-foreground-5f4c0a732b6325bf4071d9124d2ae67e037cb24fcc9c482ef82bea742109a3b8-cover-transparent/icon_432.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/.expo/web/cache/production/images/android-adaptive-foreground/android-adaptive-foreground-5f4c0a732b6325bf4071d9124d2ae67e037cb24fcc9c482ef82bea742109a3b8-cover-transparent/icon_432.png -------------------------------------------------------------------------------- /.expo/web/cache/production/images/android-standard-circle/android-standard-circle-5f4c0a732b6325bf4071d9124d2ae67e037cb24fcc9c482ef82bea742109a3b8-cover-#ffffff/icon_108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/.expo/web/cache/production/images/android-standard-circle/android-standard-circle-5f4c0a732b6325bf4071d9124d2ae67e037cb24fcc9c482ef82bea742109a3b8-cover-#ffffff/icon_108.png -------------------------------------------------------------------------------- /.expo/web/cache/production/images/android-standard-circle/android-standard-circle-5f4c0a732b6325bf4071d9124d2ae67e037cb24fcc9c482ef82bea742109a3b8-cover-#ffffff/icon_162.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/.expo/web/cache/production/images/android-standard-circle/android-standard-circle-5f4c0a732b6325bf4071d9124d2ae67e037cb24fcc9c482ef82bea742109a3b8-cover-#ffffff/icon_162.png -------------------------------------------------------------------------------- /.expo/web/cache/production/images/android-standard-circle/android-standard-circle-5f4c0a732b6325bf4071d9124d2ae67e037cb24fcc9c482ef82bea742109a3b8-cover-#ffffff/icon_216.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/.expo/web/cache/production/images/android-standard-circle/android-standard-circle-5f4c0a732b6325bf4071d9124d2ae67e037cb24fcc9c482ef82bea742109a3b8-cover-#ffffff/icon_216.png -------------------------------------------------------------------------------- /.expo/web/cache/production/images/android-standard-circle/android-standard-circle-5f4c0a732b6325bf4071d9124d2ae67e037cb24fcc9c482ef82bea742109a3b8-cover-#ffffff/icon_324.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/.expo/web/cache/production/images/android-standard-circle/android-standard-circle-5f4c0a732b6325bf4071d9124d2ae67e037cb24fcc9c482ef82bea742109a3b8-cover-#ffffff/icon_324.png -------------------------------------------------------------------------------- /.expo/web/cache/production/images/android-standard-circle/android-standard-circle-5f4c0a732b6325bf4071d9124d2ae67e037cb24fcc9c482ef82bea742109a3b8-cover-#ffffff/icon_432.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/.expo/web/cache/production/images/android-standard-circle/android-standard-circle-5f4c0a732b6325bf4071d9124d2ae67e037cb24fcc9c482ef82bea742109a3b8-cover-#ffffff/icon_432.png -------------------------------------------------------------------------------- /.expo/web/cache/production/images/android-standard-square/android-standard-square-5f4c0a732b6325bf4071d9124d2ae67e037cb24fcc9c482ef82bea742109a3b8-cover-#ffffff/icon_108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/.expo/web/cache/production/images/android-standard-square/android-standard-square-5f4c0a732b6325bf4071d9124d2ae67e037cb24fcc9c482ef82bea742109a3b8-cover-#ffffff/icon_108.png -------------------------------------------------------------------------------- /.expo/web/cache/production/images/android-standard-square/android-standard-square-5f4c0a732b6325bf4071d9124d2ae67e037cb24fcc9c482ef82bea742109a3b8-cover-#ffffff/icon_162.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/.expo/web/cache/production/images/android-standard-square/android-standard-square-5f4c0a732b6325bf4071d9124d2ae67e037cb24fcc9c482ef82bea742109a3b8-cover-#ffffff/icon_162.png -------------------------------------------------------------------------------- /.expo/web/cache/production/images/android-standard-square/android-standard-square-5f4c0a732b6325bf4071d9124d2ae67e037cb24fcc9c482ef82bea742109a3b8-cover-#ffffff/icon_216.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/.expo/web/cache/production/images/android-standard-square/android-standard-square-5f4c0a732b6325bf4071d9124d2ae67e037cb24fcc9c482ef82bea742109a3b8-cover-#ffffff/icon_216.png -------------------------------------------------------------------------------- /.expo/web/cache/production/images/android-standard-square/android-standard-square-5f4c0a732b6325bf4071d9124d2ae67e037cb24fcc9c482ef82bea742109a3b8-cover-#ffffff/icon_324.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/.expo/web/cache/production/images/android-standard-square/android-standard-square-5f4c0a732b6325bf4071d9124d2ae67e037cb24fcc9c482ef82bea742109a3b8-cover-#ffffff/icon_324.png -------------------------------------------------------------------------------- /.expo/web/cache/production/images/android-standard-square/android-standard-square-5f4c0a732b6325bf4071d9124d2ae67e037cb24fcc9c482ef82bea742109a3b8-cover-#ffffff/icon_432.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/.expo/web/cache/production/images/android-standard-square/android-standard-square-5f4c0a732b6325bf4071d9124d2ae67e037cb24fcc9c482ef82bea742109a3b8-cover-#ffffff/icon_432.png -------------------------------------------------------------------------------- /.expo/web/cache/production/images/iconsuniversal-icon/iconsuniversal-icon-74c64047eb557b1341bba7a2831eedde9ddb705e6451a9ad9f5552bf558f13de-cover-#ffffff/App-Icon-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/.expo/web/cache/production/images/iconsuniversal-icon/iconsuniversal-icon-74c64047eb557b1341bba7a2831eedde9ddb705e6451a9ad9f5552bf558f13de-cover-#ffffff/App-Icon-1024x1024@1x.png -------------------------------------------------------------------------------- /.expo/web/cache/production/images/splash-android/splash-android-bc25a616b4e31cf7300cd97b9cbf8894e855e6373aa797d0badd7e211111c5e5-contain/icon_undefined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/.expo/web/cache/production/images/splash-android/splash-android-bc25a616b4e31cf7300cd97b9cbf8894e855e6373aa797d0badd7e211111c5e5-contain/icon_undefined.png -------------------------------------------------------------------------------- /.expo/web/cache/production/images/splash-ios/splash-ios-bc25a616b4e31cf7300cd97b9cbf8894e855e6373aa797d0badd7e211111c5e5-contain/icon_undefined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/.expo/web/cache/production/images/splash-ios/splash-ios-bc25a616b4e31cf7300cd97b9cbf8894e855e6373aa797d0badd7e211111c5e5-contain/icon_undefined.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/.prettierrc -------------------------------------------------------------------------------- /App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/App.jsx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/README.md -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/debug/java/test/twiggers/com/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/android/app/src/debug/java/test/twiggers/com/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/test/twiggers/com/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/android/app/src/main/java/test/twiggers/com/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/test/twiggers/com/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/android/app/src/main/java/test/twiggers/com/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/android/app/src/main/res/drawable-hdpi/splashscreen_image.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/android/app/src/main/res/drawable-mdpi/splashscreen_image.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/android/app/src/main/res/drawable-xhdpi/splashscreen_image.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/android/app/src/main/res/drawable-xxhdpi/splashscreen_image.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/android/app/src/main/res/drawable-xxxhdpi/splashscreen_image.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/splashscreen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/android/app/src/main/res/drawable/splashscreen.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/release/java/test/twiggers/com/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/android/app/src/release/java/test/twiggers/com/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/app.json -------------------------------------------------------------------------------- /assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/assets/.DS_Store -------------------------------------------------------------------------------- /assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/assets/adaptive-icon.png -------------------------------------------------------------------------------- /assets/expo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/assets/expo.jpg -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/fonts/Montserrat-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/assets/fonts/Montserrat-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/assets/fonts/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/rn.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/assets/rn.webp -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/assets/splash.png -------------------------------------------------------------------------------- /assets/users/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/assets/users/.DS_Store -------------------------------------------------------------------------------- /assets/users/user1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/assets/users/user1.png -------------------------------------------------------------------------------- /assets/users/user2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/assets/users/user2.png -------------------------------------------------------------------------------- /assets/users/user3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/assets/users/user3.png -------------------------------------------------------------------------------- /assets/users/user4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/assets/users/user4.png -------------------------------------------------------------------------------- /assets/users/user5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/assets/users/user5.png -------------------------------------------------------------------------------- /assets/users/user6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/assets/users/user6.png -------------------------------------------------------------------------------- /assets/users/user7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/assets/users/user7.png -------------------------------------------------------------------------------- /assets/users/user8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/assets/users/user8.png -------------------------------------------------------------------------------- /assets/users/user9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/assets/users/user9.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/babel.config.js -------------------------------------------------------------------------------- /components/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/components/Header.jsx -------------------------------------------------------------------------------- /components/NavigationContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/components/NavigationContainer.jsx -------------------------------------------------------------------------------- /components/Post.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/components/Post.jsx -------------------------------------------------------------------------------- /components/Story.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/components/Story.jsx -------------------------------------------------------------------------------- /components/Tabs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/components/Tabs.jsx -------------------------------------------------------------------------------- /components/ThemeWrapper.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/components/ThemeWrapper.jsx -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/index.js -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/ios/.xcode.env -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Podfile.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/ios/Podfile.properties.json -------------------------------------------------------------------------------- /ios/ReactNativeThemeSwitcher.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/ios/ReactNativeThemeSwitcher.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/ReactNativeThemeSwitcher.xcodeproj/xcshareddata/xcschemes/ReactNativeThemeSwitcher.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/ios/ReactNativeThemeSwitcher.xcodeproj/xcshareddata/xcschemes/ReactNativeThemeSwitcher.xcscheme -------------------------------------------------------------------------------- /ios/ReactNativeThemeSwitcher.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/ios/ReactNativeThemeSwitcher.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/ReactNativeThemeSwitcher/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/ios/ReactNativeThemeSwitcher/AppDelegate.h -------------------------------------------------------------------------------- /ios/ReactNativeThemeSwitcher/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/ios/ReactNativeThemeSwitcher/AppDelegate.mm -------------------------------------------------------------------------------- /ios/ReactNativeThemeSwitcher/Images.xcassets/AppIcon.appiconset/App-Icon-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/ios/ReactNativeThemeSwitcher/Images.xcassets/AppIcon.appiconset/App-Icon-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/ReactNativeThemeSwitcher/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/ios/ReactNativeThemeSwitcher/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/ReactNativeThemeSwitcher/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/ios/ReactNativeThemeSwitcher/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/ReactNativeThemeSwitcher/Images.xcassets/SplashScreen.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/ios/ReactNativeThemeSwitcher/Images.xcassets/SplashScreen.imageset/Contents.json -------------------------------------------------------------------------------- /ios/ReactNativeThemeSwitcher/Images.xcassets/SplashScreen.imageset/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/ios/ReactNativeThemeSwitcher/Images.xcassets/SplashScreen.imageset/image.png -------------------------------------------------------------------------------- /ios/ReactNativeThemeSwitcher/Images.xcassets/SplashScreenBackground.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/ios/ReactNativeThemeSwitcher/Images.xcassets/SplashScreenBackground.imageset/Contents.json -------------------------------------------------------------------------------- /ios/ReactNativeThemeSwitcher/Images.xcassets/SplashScreenBackground.imageset/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/ios/ReactNativeThemeSwitcher/Images.xcassets/SplashScreenBackground.imageset/image.png -------------------------------------------------------------------------------- /ios/ReactNativeThemeSwitcher/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/ios/ReactNativeThemeSwitcher/Info.plist -------------------------------------------------------------------------------- /ios/ReactNativeThemeSwitcher/ReactNativeThemeSwitcher-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/ios/ReactNativeThemeSwitcher/ReactNativeThemeSwitcher-Bridging-Header.h -------------------------------------------------------------------------------- /ios/ReactNativeThemeSwitcher/ReactNativeThemeSwitcher.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/ios/ReactNativeThemeSwitcher/ReactNativeThemeSwitcher.entitlements -------------------------------------------------------------------------------- /ios/ReactNativeThemeSwitcher/SplashScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/ios/ReactNativeThemeSwitcher/SplashScreen.storyboard -------------------------------------------------------------------------------- /ios/ReactNativeThemeSwitcher/Supporting/Expo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/ios/ReactNativeThemeSwitcher/Supporting/Expo.plist -------------------------------------------------------------------------------- /ios/ReactNativeThemeSwitcher/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/ios/ReactNativeThemeSwitcher/main.m -------------------------------------------------------------------------------- /ios/ReactNativeThemeSwitcher/noop-file.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/ios/ReactNativeThemeSwitcher/noop-file.swift -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/package.json -------------------------------------------------------------------------------- /store/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/store/store.js -------------------------------------------------------------------------------- /utils/dimensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/utils/dimensions.js -------------------------------------------------------------------------------- /utils/mmkv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/utils/mmkv.js -------------------------------------------------------------------------------- /utils/svgs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/utils/svgs.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/React-Native-Theme-Switcher/HEAD/yarn.lock --------------------------------------------------------------------------------