├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── bug_report.yml │ ├── config.yml │ ├── custom.md │ └── feature_request.md ├── actions │ └── setup │ │ └── action.yml └── workflows │ └── ci.yml ├── .gitignore ├── .nvmrc ├── .watchmanconfig ├── .yarn ├── plugins │ └── @yarnpkg │ │ ├── plugin-interactive-tools.cjs │ │ └── plugin-workspace-tools.cjs └── releases │ └── yarn-3.6.1.cjs ├── .yarnrc.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── android ├── build.gradle ├── gradle.properties └── src │ ├── main │ ├── AndroidManifest.xml │ ├── AndroidManifestNew.xml │ ├── java │ │ └── com │ │ │ └── autoskeleton │ │ │ ├── AutoSkeletonIgnoreView.kt │ │ │ ├── AutoSkeletonView.kt │ │ │ ├── AutoSkeletonViewPackage.kt │ │ │ └── ViewManagerProvider.kt │ └── res │ │ └── values │ │ └── ids.xml │ ├── newArch │ └── java │ │ └── com │ │ └── autoskeleton │ │ ├── AutoSkeletonIgnoreViewManager.kt │ │ └── AutoSkeletonViewManager.kt │ └── oldArch │ └── java │ └── com │ └── autoskeleton │ ├── AutoSkeletonIgnoreViewManager.kt │ └── AutoSkeletonViewManager.kt ├── app.plugin.js ├── assets └── demo.gif ├── babel.config.js ├── example ├── .bundle │ └── config ├── .watchmanconfig ├── Gemfile ├── README.md ├── android │ ├── app │ │ ├── build.gradle │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── autoskeleton │ │ │ │ └── example │ │ │ │ ├── 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 ├── assets │ └── avatar.png ├── babel.config.js ├── index.js ├── ios │ ├── .xcode.env │ ├── AutoSkeletonExample-Bridging-Header.h │ ├── AutoSkeletonExample.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── AutoSkeletonExample.xcscheme │ ├── AutoSkeletonExample.xcworkspace │ │ └── contents.xcworkspacedata │ ├── AutoSkeletonExample │ │ ├── AppDelegate.swift │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── PrivacyInfo.xcprivacy │ ├── File.swift │ ├── Podfile │ └── Podfile.lock ├── jest.config.js ├── metro.config.js ├── package.json ├── react-native.config.js └── src │ └── App.tsx ├── ios ├── React │ ├── AutoSkeleton-Bridging-Header.h │ ├── AutoSkeletonIgnoreView.h │ ├── AutoSkeletonIgnoreView.mm │ ├── AutoSkeletonView.h │ ├── AutoSkeletonView.mm │ └── AutoSkeletonViewManager.mm └── SkeletonView │ ├── Animations │ ├── AnimationBase.swift │ ├── AnimationGradient.swift │ ├── AnimationNone.swift │ └── AnimationPulse.swift │ ├── Constants.swift │ ├── SkeletonCore.swift │ ├── SkeletonPlaceholderMask.swift │ ├── SkeletonProtocols.swift │ ├── SkeletonViewFabric.swift │ └── SkeletonViewOldArch.swift ├── package.json ├── react-native-auto-skeleton.podspec ├── react-native.config.js ├── src ├── AutoSkeletonIgnoreViewNativeComponent.ts ├── AutoSkeletonViewNativeComponent.ts ├── expo-plugins │ └── withAutoSkeleton.js └── index.tsx ├── tsconfig.build.json ├── tsconfig.json ├── turbo.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/actions/setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/.github/actions/setup/action.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v20 2 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.6.1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/.yarn/releases/yarn-3.6.1.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/README.md -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/AndroidManifestNew.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/android/src/main/AndroidManifestNew.xml -------------------------------------------------------------------------------- /android/src/main/java/com/autoskeleton/AutoSkeletonIgnoreView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/android/src/main/java/com/autoskeleton/AutoSkeletonIgnoreView.kt -------------------------------------------------------------------------------- /android/src/main/java/com/autoskeleton/AutoSkeletonView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/android/src/main/java/com/autoskeleton/AutoSkeletonView.kt -------------------------------------------------------------------------------- /android/src/main/java/com/autoskeleton/AutoSkeletonViewPackage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/android/src/main/java/com/autoskeleton/AutoSkeletonViewPackage.kt -------------------------------------------------------------------------------- /android/src/main/java/com/autoskeleton/ViewManagerProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/android/src/main/java/com/autoskeleton/ViewManagerProvider.kt -------------------------------------------------------------------------------- /android/src/main/res/values/ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/android/src/main/res/values/ids.xml -------------------------------------------------------------------------------- /android/src/newArch/java/com/autoskeleton/AutoSkeletonIgnoreViewManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/android/src/newArch/java/com/autoskeleton/AutoSkeletonIgnoreViewManager.kt -------------------------------------------------------------------------------- /android/src/newArch/java/com/autoskeleton/AutoSkeletonViewManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/android/src/newArch/java/com/autoskeleton/AutoSkeletonViewManager.kt -------------------------------------------------------------------------------- /android/src/oldArch/java/com/autoskeleton/AutoSkeletonIgnoreViewManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/android/src/oldArch/java/com/autoskeleton/AutoSkeletonIgnoreViewManager.kt -------------------------------------------------------------------------------- /android/src/oldArch/java/com/autoskeleton/AutoSkeletonViewManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/android/src/oldArch/java/com/autoskeleton/AutoSkeletonViewManager.kt -------------------------------------------------------------------------------- /app.plugin.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./src/expo-plugins/withAutoSkeleton'); 2 | -------------------------------------------------------------------------------- /assets/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/assets/demo.gif -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/babel.config.js -------------------------------------------------------------------------------- /example/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/example/.bundle/config -------------------------------------------------------------------------------- /example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/example/Gemfile -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/example/README.md -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/example/android/app/debug.keystore -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/java/autoskeleton/example/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/example/android/app/src/main/java/autoskeleton/example/MainActivity.kt -------------------------------------------------------------------------------- /example/android/app/src/main/java/autoskeleton/example/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/example/android/app/src/main/java/autoskeleton/example/MainApplication.kt -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/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/pioner92/react-native-auto-skeleton/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/pioner92/react-native-auto-skeleton/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/pioner92/react-native-auto-skeleton/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/pioner92/react-native-auto-skeleton/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/pioner92/react-native-auto-skeleton/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/pioner92/react-native-auto-skeleton/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/pioner92/react-native-auto-skeleton/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/pioner92/react-native-auto-skeleton/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/pioner92/react-native-auto-skeleton/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/pioner92/react-native-auto-skeleton/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/pioner92/react-native-auto-skeleton/HEAD/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/example/app.json -------------------------------------------------------------------------------- /example/assets/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/example/assets/avatar.png -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/example/index.js -------------------------------------------------------------------------------- /example/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/example/ios/.xcode.env -------------------------------------------------------------------------------- /example/ios/AutoSkeletonExample-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/example/ios/AutoSkeletonExample-Bridging-Header.h -------------------------------------------------------------------------------- /example/ios/AutoSkeletonExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/example/ios/AutoSkeletonExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/AutoSkeletonExample.xcodeproj/xcshareddata/xcschemes/AutoSkeletonExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/example/ios/AutoSkeletonExample.xcodeproj/xcshareddata/xcschemes/AutoSkeletonExample.xcscheme -------------------------------------------------------------------------------- /example/ios/AutoSkeletonExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/example/ios/AutoSkeletonExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/AutoSkeletonExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/example/ios/AutoSkeletonExample/AppDelegate.swift -------------------------------------------------------------------------------- /example/ios/AutoSkeletonExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/example/ios/AutoSkeletonExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/AutoSkeletonExample/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/example/ios/AutoSkeletonExample/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /example/ios/AutoSkeletonExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/example/ios/AutoSkeletonExample/Info.plist -------------------------------------------------------------------------------- /example/ios/AutoSkeletonExample/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/example/ios/AutoSkeletonExample/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/AutoSkeletonExample/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/example/ios/AutoSkeletonExample/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /example/ios/File.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/example/ios/File.swift -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/example/ios/Podfile.lock -------------------------------------------------------------------------------- /example/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/example/package.json -------------------------------------------------------------------------------- /example/react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/example/react-native.config.js -------------------------------------------------------------------------------- /example/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/example/src/App.tsx -------------------------------------------------------------------------------- /ios/React/AutoSkeleton-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/ios/React/AutoSkeleton-Bridging-Header.h -------------------------------------------------------------------------------- /ios/React/AutoSkeletonIgnoreView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/ios/React/AutoSkeletonIgnoreView.h -------------------------------------------------------------------------------- /ios/React/AutoSkeletonIgnoreView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/ios/React/AutoSkeletonIgnoreView.mm -------------------------------------------------------------------------------- /ios/React/AutoSkeletonView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/ios/React/AutoSkeletonView.h -------------------------------------------------------------------------------- /ios/React/AutoSkeletonView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/ios/React/AutoSkeletonView.mm -------------------------------------------------------------------------------- /ios/React/AutoSkeletonViewManager.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/ios/React/AutoSkeletonViewManager.mm -------------------------------------------------------------------------------- /ios/SkeletonView/Animations/AnimationBase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/ios/SkeletonView/Animations/AnimationBase.swift -------------------------------------------------------------------------------- /ios/SkeletonView/Animations/AnimationGradient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/ios/SkeletonView/Animations/AnimationGradient.swift -------------------------------------------------------------------------------- /ios/SkeletonView/Animations/AnimationNone.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/ios/SkeletonView/Animations/AnimationNone.swift -------------------------------------------------------------------------------- /ios/SkeletonView/Animations/AnimationPulse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/ios/SkeletonView/Animations/AnimationPulse.swift -------------------------------------------------------------------------------- /ios/SkeletonView/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/ios/SkeletonView/Constants.swift -------------------------------------------------------------------------------- /ios/SkeletonView/SkeletonCore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/ios/SkeletonView/SkeletonCore.swift -------------------------------------------------------------------------------- /ios/SkeletonView/SkeletonPlaceholderMask.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/ios/SkeletonView/SkeletonPlaceholderMask.swift -------------------------------------------------------------------------------- /ios/SkeletonView/SkeletonProtocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/ios/SkeletonView/SkeletonProtocols.swift -------------------------------------------------------------------------------- /ios/SkeletonView/SkeletonViewFabric.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/ios/SkeletonView/SkeletonViewFabric.swift -------------------------------------------------------------------------------- /ios/SkeletonView/SkeletonViewOldArch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/ios/SkeletonView/SkeletonViewOldArch.swift -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/package.json -------------------------------------------------------------------------------- /react-native-auto-skeleton.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/react-native-auto-skeleton.podspec -------------------------------------------------------------------------------- /react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/react-native.config.js -------------------------------------------------------------------------------- /src/AutoSkeletonIgnoreViewNativeComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/src/AutoSkeletonIgnoreViewNativeComponent.ts -------------------------------------------------------------------------------- /src/AutoSkeletonViewNativeComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/src/AutoSkeletonViewNativeComponent.ts -------------------------------------------------------------------------------- /src/expo-plugins/withAutoSkeleton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/src/expo-plugins/withAutoSkeleton.js -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/src/index.tsx -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/tsconfig.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/turbo.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioner92/react-native-auto-skeleton/HEAD/yarn.lock --------------------------------------------------------------------------------