├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── Example ├── .bundle │ └── config ├── .eslintrc.js ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── App.js ├── Field.js ├── Gemfile ├── __tests__ │ └── App.test.tsx ├── android │ ├── app │ │ ├── build.gradle │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── ReactNativeRootToast │ │ │ │ ├── MainActivity.kt │ │ │ │ └── MainApplication.kt │ │ │ └── res │ │ │ ├── drawable │ │ │ └── rn_edit_text_material.xml │ │ │ ├── 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 │ │ │ ├── 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 ├── bun.lock ├── index.js ├── ios │ ├── .xcode.env │ ├── Podfile │ ├── Podfile.lock │ ├── ReactNativeRootToast.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── rn781.xcscheme │ ├── ReactNativeRootToast.xcworkspace │ │ └── contents.xcworkspacedata │ └── ReactNativeRootToast │ │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── PrivacyInfo.xcprivacy ├── jest.config.js ├── metro.config.js ├── package.json ├── screen-shoots.gif ├── test.tsx └── tsconfig.json ├── LICENSE.txt ├── README.md ├── index.d.ts ├── index.js ├── lib ├── Toast.js └── ToastContainer.js ├── package.json └── tea.yaml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .idea/ 3 | 4 | # vim 5 | *.sw* 6 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /Example/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/Example/.bundle/config -------------------------------------------------------------------------------- /Example/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native', 4 | }; 5 | -------------------------------------------------------------------------------- /Example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/Example/.gitignore -------------------------------------------------------------------------------- /Example/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/Example/.prettierrc.js -------------------------------------------------------------------------------- /Example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /Example/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/Example/App.js -------------------------------------------------------------------------------- /Example/Field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/Example/Field.js -------------------------------------------------------------------------------- /Example/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/Example/Gemfile -------------------------------------------------------------------------------- /Example/__tests__/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/Example/__tests__/App.test.tsx -------------------------------------------------------------------------------- /Example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/Example/android/app/build.gradle -------------------------------------------------------------------------------- /Example/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/Example/android/app/debug.keystore -------------------------------------------------------------------------------- /Example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/Example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /Example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/Example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /Example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/Example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Example/android/app/src/main/java/com/ReactNativeRootToast/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/Example/android/app/src/main/java/com/ReactNativeRootToast/MainActivity.kt -------------------------------------------------------------------------------- /Example/android/app/src/main/java/com/ReactNativeRootToast/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/Example/android/app/src/main/java/com/ReactNativeRootToast/MainApplication.kt -------------------------------------------------------------------------------- /Example/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/Example/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /Example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/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/magicismight/react-native-root-toast/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/magicismight/react-native-root-toast/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/magicismight/react-native-root-toast/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/magicismight/react-native-root-toast/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/magicismight/react-native-root-toast/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/magicismight/react-native-root-toast/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/magicismight/react-native-root-toast/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/magicismight/react-native-root-toast/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/magicismight/react-native-root-toast/HEAD/Example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/Example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/Example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/Example/android/build.gradle -------------------------------------------------------------------------------- /Example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/Example/android/gradle.properties -------------------------------------------------------------------------------- /Example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/Example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/Example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/Example/android/gradlew -------------------------------------------------------------------------------- /Example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/Example/android/gradlew.bat -------------------------------------------------------------------------------- /Example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/Example/android/settings.gradle -------------------------------------------------------------------------------- /Example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/Example/app.json -------------------------------------------------------------------------------- /Example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/Example/babel.config.js -------------------------------------------------------------------------------- /Example/bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/Example/bun.lock -------------------------------------------------------------------------------- /Example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/Example/index.js -------------------------------------------------------------------------------- /Example/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/Example/ios/.xcode.env -------------------------------------------------------------------------------- /Example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/Example/ios/Podfile -------------------------------------------------------------------------------- /Example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/Example/ios/Podfile.lock -------------------------------------------------------------------------------- /Example/ios/ReactNativeRootToast.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/Example/ios/ReactNativeRootToast.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/ios/ReactNativeRootToast.xcodeproj/xcshareddata/xcschemes/rn781.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/Example/ios/ReactNativeRootToast.xcodeproj/xcshareddata/xcschemes/rn781.xcscheme -------------------------------------------------------------------------------- /Example/ios/ReactNativeRootToast.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/Example/ios/ReactNativeRootToast.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ios/ReactNativeRootToast/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/Example/ios/ReactNativeRootToast/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/ios/ReactNativeRootToast/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/Example/ios/ReactNativeRootToast/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/ios/ReactNativeRootToast/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/Example/ios/ReactNativeRootToast/Info.plist -------------------------------------------------------------------------------- /Example/ios/ReactNativeRootToast/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/Example/ios/ReactNativeRootToast/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/ios/ReactNativeRootToast/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/Example/ios/ReactNativeRootToast/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /Example/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /Example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/Example/metro.config.js -------------------------------------------------------------------------------- /Example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/Example/package.json -------------------------------------------------------------------------------- /Example/screen-shoots.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/Example/screen-shoots.gif -------------------------------------------------------------------------------- /Example/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/Example/test.tsx -------------------------------------------------------------------------------- /Example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/Example/tsconfig.json -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/README.md -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/index.js -------------------------------------------------------------------------------- /lib/Toast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/lib/Toast.js -------------------------------------------------------------------------------- /lib/ToastContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/lib/ToastContainer.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/package.json -------------------------------------------------------------------------------- /tea.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicismight/react-native-root-toast/HEAD/tea.yaml --------------------------------------------------------------------------------