├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── example ├── .buckconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── App.tsx ├── __tests__ │ └── App.js ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── build_defs.bzl │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ ├── app.bundle │ │ │ └── app.manifest │ │ │ ├── java │ │ │ └── io │ │ │ │ └── expo │ │ │ │ └── safeareaviewexample │ │ │ │ ├── MainActivity.java │ │ │ │ ├── MainApplication.java │ │ │ │ └── generated │ │ │ │ └── BasePackageList.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── app.json ├── babel.config.js ├── index.js ├── ios │ ├── Podfile │ ├── Podfile.lock │ ├── SafeAreaViewExample.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── SafeAreaViewExample.xcscheme │ ├── SafeAreaViewExample.xcworkspace │ │ └── contents.xcworkspacedata │ └── SafeAreaViewExample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── Supporting │ │ ├── Expo.plist │ │ ├── app.bundle │ │ └── app.manifest │ │ ├── main.m │ │ └── safeareaviewexample.entitlements ├── metro.config.js ├── package.json ├── tsconfig.json └── yarn.lock ├── package.json ├── src ├── index.tsx ├── index.web.js └── shallowEquals.ts ├── tsconfig.json └── yarn.lock /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .expo/ 3 | npm-debug.* 4 | lib 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/README.md -------------------------------------------------------------------------------- /example/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/.buckconfig -------------------------------------------------------------------------------- /example/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /example/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/App.tsx -------------------------------------------------------------------------------- /example/__tests__/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/__tests__/App.js -------------------------------------------------------------------------------- /example/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/android/app/BUCK -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/android/app/build_defs.bzl -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/assets/app.bundle: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/android/app/src/main/assets/app.manifest: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/android/app/src/main/java/io/expo/safeareaviewexample/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/android/app/src/main/java/io/expo/safeareaviewexample/MainActivity.java -------------------------------------------------------------------------------- /example/android/app/src/main/java/io/expo/safeareaviewexample/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/android/app/src/main/java/io/expo/safeareaviewexample/MainApplication.java -------------------------------------------------------------------------------- /example/android/app/src/main/java/io/expo/safeareaviewexample/generated/BasePackageList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/android/app/src/main/java/io/expo/safeareaviewexample/generated/BasePackageList.java -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/app.json -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/index.js -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/ios/Podfile.lock -------------------------------------------------------------------------------- /example/ios/SafeAreaViewExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/ios/SafeAreaViewExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/SafeAreaViewExample.xcodeproj/xcshareddata/xcschemes/SafeAreaViewExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/ios/SafeAreaViewExample.xcodeproj/xcshareddata/xcschemes/SafeAreaViewExample.xcscheme -------------------------------------------------------------------------------- /example/ios/SafeAreaViewExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/ios/SafeAreaViewExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/SafeAreaViewExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/ios/SafeAreaViewExample/AppDelegate.h -------------------------------------------------------------------------------- /example/ios/SafeAreaViewExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/ios/SafeAreaViewExample/AppDelegate.m -------------------------------------------------------------------------------- /example/ios/SafeAreaViewExample/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/ios/SafeAreaViewExample/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /example/ios/SafeAreaViewExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/ios/SafeAreaViewExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/SafeAreaViewExample/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/ios/SafeAreaViewExample/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /example/ios/SafeAreaViewExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/ios/SafeAreaViewExample/Info.plist -------------------------------------------------------------------------------- /example/ios/SafeAreaViewExample/Supporting/Expo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/ios/SafeAreaViewExample/Supporting/Expo.plist -------------------------------------------------------------------------------- /example/ios/SafeAreaViewExample/Supporting/app.bundle: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/ios/SafeAreaViewExample/Supporting/app.manifest: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/ios/SafeAreaViewExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/ios/SafeAreaViewExample/main.m -------------------------------------------------------------------------------- /example/ios/SafeAreaViewExample/safeareaviewexample.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/ios/SafeAreaViewExample/safeareaviewexample.entitlements -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/package.json -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/package.json -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/index.web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/src/index.web.js -------------------------------------------------------------------------------- /src/shallowEquals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/src/shallowEquals.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-navigation/react-native-safe-area-view/HEAD/yarn.lock --------------------------------------------------------------------------------