├── .eslintignore ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .github ├── CODEOWNERS └── workflows │ ├── ci.yml │ └── windows-ci.yml ├── .gitignore ├── .npmignore ├── .prettierrc ├── .vscode └── settings.json ├── CLAUDE.md ├── LICENSE ├── README.md ├── __tests__ └── ProgressViewWindows.test.js ├── android ├── build.gradle └── src │ ├── fabric │ └── java │ │ └── com │ │ └── reactnativecommunity │ │ └── progressview │ │ └── RNCProgressViewManager.java │ ├── main │ ├── AndroidManifest.xml │ └── java │ │ └── com │ │ └── reactnativecommunity │ │ └── progressview │ │ ├── RNCProgressViewManagerImpl.java │ │ └── RNCProgressViewPackage.java │ └── paper │ └── java │ └── com │ └── reactnativecommunity │ └── progressview │ └── RNCProgressViewManager.java ├── babel.config.js ├── common └── cpp │ └── react │ └── renderer │ └── components │ └── progressview │ ├── RNCProgressViewComponentDescriptors.h │ ├── RNCProgressViewShadowNode.cpp │ ├── RNCProgressViewShadowNode.h │ ├── RNCProgressViewState.cpp │ └── RNCProgressViewState.h ├── example ├── .gitignore ├── .watchmanconfig ├── App.js ├── android │ ├── 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 │ └── example.xcworkspace │ │ └── contents.xcworkspacedata ├── macos │ └── Podfile ├── metro.config.js ├── package.json ├── react-native.config.js ├── test.png ├── windows │ └── .gitignore └── yarn.lock ├── fabric-example ├── .gitignore ├── .watchmanconfig ├── App.js ├── android │ ├── 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 │ ├── FabricExample.xcworkspace │ │ └── contents.xcworkspacedata │ ├── Podfile │ └── Podfile.lock ├── macos │ └── Podfile ├── metro.config.js ├── package.json ├── react-native.config.js ├── test.png ├── windows │ └── .gitignore └── yarn.lock ├── index.js ├── ios ├── Fabric │ ├── RNCProgressViewComponentView.h │ └── RNCProgressViewComponentView.mm ├── RNCProgressView.xcodeproj │ └── project.pbxproj ├── RNCProgressViewManager.h └── RNCProgressViewManager.m ├── jest-setups ├── jest.setup.js └── jest.setup.windows.js ├── js ├── ProgressView.android.js ├── ProgressView.ios.js ├── ProgressView.macos.js ├── ProgressView.windows.js ├── RNCProgressViewNativeComponent.js ├── RNCProgressViewNativeComponentAndroid.js ├── RNCProgressViewNativeComponentWindows.js ├── __tests__ │ ├── ProgressViewIOS.ios.test.js │ └── __snapshots__ │ │ └── ProgressViewIOS.ios.test.js.snap ├── index.d.ts └── index.js ├── macos ├── RNCProgressView.h ├── RNCProgressView.m ├── RNCProgressView.xcodeproj │ └── project.pbxproj ├── RNCProgressViewManager.h ├── RNCProgressViewManager.m └── config │ ├── RNCProgressView.debug.xcconfig │ ├── RNCProgressView.release.xcconfig │ └── RNCProgressView.shared.xcconfig ├── metro.config.js ├── metro.config.macos.js ├── metro.config.windows.js ├── package.json ├── react-native-progress-view.podspec ├── react-native.config.js ├── tsconfig.json ├── windows ├── .gitignore ├── progress-view.sln └── progress-view │ ├── ProgressViewView.cpp │ ├── ProgressViewView.h │ ├── ProgressViewView.idl │ ├── ProgressViewViewManager.cpp │ ├── ProgressViewViewManager.h │ ├── PropertySheet.props │ ├── ReactPackageProvider.cpp │ ├── ReactPackageProvider.h │ ├── ReactPackageProvider.idl │ ├── packages.config │ ├── pch.cpp │ ├── pch.h │ ├── progress-view.vcxproj │ ├── progress_view.def │ └── readme.txt └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: ['@react-native-community'], 3 | }; 4 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @Naturalclar -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/windows-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/.github/workflows/windows-ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | /.circleci 2 | /.github 3 | /example -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/ProgressViewWindows.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/__tests__/ProgressViewWindows.test.js -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/src/fabric/java/com/reactnativecommunity/progressview/RNCProgressViewManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/android/src/fabric/java/com/reactnativecommunity/progressview/RNCProgressViewManager.java -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/java/com/reactnativecommunity/progressview/RNCProgressViewManagerImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/android/src/main/java/com/reactnativecommunity/progressview/RNCProgressViewManagerImpl.java -------------------------------------------------------------------------------- /android/src/main/java/com/reactnativecommunity/progressview/RNCProgressViewPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/android/src/main/java/com/reactnativecommunity/progressview/RNCProgressViewPackage.java -------------------------------------------------------------------------------- /android/src/paper/java/com/reactnativecommunity/progressview/RNCProgressViewManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/android/src/paper/java/com/reactnativecommunity/progressview/RNCProgressViewManager.java -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/babel.config.js -------------------------------------------------------------------------------- /common/cpp/react/renderer/components/progressview/RNCProgressViewComponentDescriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/common/cpp/react/renderer/components/progressview/RNCProgressViewComponentDescriptors.h -------------------------------------------------------------------------------- /common/cpp/react/renderer/components/progressview/RNCProgressViewShadowNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/common/cpp/react/renderer/components/progressview/RNCProgressViewShadowNode.cpp -------------------------------------------------------------------------------- /common/cpp/react/renderer/components/progressview/RNCProgressViewShadowNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/common/cpp/react/renderer/components/progressview/RNCProgressViewShadowNode.h -------------------------------------------------------------------------------- /common/cpp/react/renderer/components/progressview/RNCProgressViewState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/common/cpp/react/renderer/components/progressview/RNCProgressViewState.cpp -------------------------------------------------------------------------------- /common/cpp/react/renderer/components/progressview/RNCProgressViewState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/common/cpp/react/renderer/components/progressview/RNCProgressViewState.h -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /example/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/example/App.js -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/example/app.json -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/example/index.js -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/example/ios/Podfile.lock -------------------------------------------------------------------------------- /example/ios/example.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/example/ios/example.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/example/macos/Podfile -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/example/package.json -------------------------------------------------------------------------------- /example/react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/example/react-native.config.js -------------------------------------------------------------------------------- /example/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/example/test.png -------------------------------------------------------------------------------- /example/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/example/windows/.gitignore -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /fabric-example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/fabric-example/.gitignore -------------------------------------------------------------------------------- /fabric-example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /fabric-example/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/fabric-example/App.js -------------------------------------------------------------------------------- /fabric-example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/fabric-example/android/build.gradle -------------------------------------------------------------------------------- /fabric-example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/fabric-example/android/gradle.properties -------------------------------------------------------------------------------- /fabric-example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/fabric-example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /fabric-example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/fabric-example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /fabric-example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/fabric-example/android/gradlew -------------------------------------------------------------------------------- /fabric-example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/fabric-example/android/gradlew.bat -------------------------------------------------------------------------------- /fabric-example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/fabric-example/android/settings.gradle -------------------------------------------------------------------------------- /fabric-example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/fabric-example/app.json -------------------------------------------------------------------------------- /fabric-example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/fabric-example/babel.config.js -------------------------------------------------------------------------------- /fabric-example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/fabric-example/index.js -------------------------------------------------------------------------------- /fabric-example/ios/FabricExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/fabric-example/ios/FabricExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /fabric-example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/fabric-example/ios/Podfile -------------------------------------------------------------------------------- /fabric-example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/fabric-example/ios/Podfile.lock -------------------------------------------------------------------------------- /fabric-example/macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/fabric-example/macos/Podfile -------------------------------------------------------------------------------- /fabric-example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/fabric-example/metro.config.js -------------------------------------------------------------------------------- /fabric-example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/fabric-example/package.json -------------------------------------------------------------------------------- /fabric-example/react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/fabric-example/react-native.config.js -------------------------------------------------------------------------------- /fabric-example/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/fabric-example/test.png -------------------------------------------------------------------------------- /fabric-example/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/fabric-example/windows/.gitignore -------------------------------------------------------------------------------- /fabric-example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/fabric-example/yarn.lock -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/index.js -------------------------------------------------------------------------------- /ios/Fabric/RNCProgressViewComponentView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/ios/Fabric/RNCProgressViewComponentView.h -------------------------------------------------------------------------------- /ios/Fabric/RNCProgressViewComponentView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/ios/Fabric/RNCProgressViewComponentView.mm -------------------------------------------------------------------------------- /ios/RNCProgressView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/ios/RNCProgressView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/RNCProgressViewManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/ios/RNCProgressViewManager.h -------------------------------------------------------------------------------- /ios/RNCProgressViewManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/ios/RNCProgressViewManager.m -------------------------------------------------------------------------------- /jest-setups/jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/jest-setups/jest.setup.js -------------------------------------------------------------------------------- /jest-setups/jest.setup.windows.js: -------------------------------------------------------------------------------- 1 | platform = 'windows'; 2 | -------------------------------------------------------------------------------- /js/ProgressView.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/js/ProgressView.android.js -------------------------------------------------------------------------------- /js/ProgressView.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/js/ProgressView.ios.js -------------------------------------------------------------------------------- /js/ProgressView.macos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/js/ProgressView.macos.js -------------------------------------------------------------------------------- /js/ProgressView.windows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/js/ProgressView.windows.js -------------------------------------------------------------------------------- /js/RNCProgressViewNativeComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/js/RNCProgressViewNativeComponent.js -------------------------------------------------------------------------------- /js/RNCProgressViewNativeComponentAndroid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/js/RNCProgressViewNativeComponentAndroid.js -------------------------------------------------------------------------------- /js/RNCProgressViewNativeComponentWindows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/js/RNCProgressViewNativeComponentWindows.js -------------------------------------------------------------------------------- /js/__tests__/ProgressViewIOS.ios.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/js/__tests__/ProgressViewIOS.ios.test.js -------------------------------------------------------------------------------- /js/__tests__/__snapshots__/ProgressViewIOS.ios.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/js/__tests__/__snapshots__/ProgressViewIOS.ios.test.js.snap -------------------------------------------------------------------------------- /js/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/js/index.d.ts -------------------------------------------------------------------------------- /js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/js/index.js -------------------------------------------------------------------------------- /macos/RNCProgressView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/macos/RNCProgressView.h -------------------------------------------------------------------------------- /macos/RNCProgressView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/macos/RNCProgressView.m -------------------------------------------------------------------------------- /macos/RNCProgressView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/macos/RNCProgressView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /macos/RNCProgressViewManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/macos/RNCProgressViewManager.h -------------------------------------------------------------------------------- /macos/RNCProgressViewManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/macos/RNCProgressViewManager.m -------------------------------------------------------------------------------- /macos/config/RNCProgressView.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/macos/config/RNCProgressView.debug.xcconfig -------------------------------------------------------------------------------- /macos/config/RNCProgressView.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/macos/config/RNCProgressView.release.xcconfig -------------------------------------------------------------------------------- /macos/config/RNCProgressView.shared.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/macos/config/RNCProgressView.shared.xcconfig -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/metro.config.js -------------------------------------------------------------------------------- /metro.config.macos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/metro.config.macos.js -------------------------------------------------------------------------------- /metro.config.windows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/metro.config.windows.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/package.json -------------------------------------------------------------------------------- /react-native-progress-view.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/react-native-progress-view.podspec -------------------------------------------------------------------------------- /react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/react-native.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/tsconfig.json -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/windows/.gitignore -------------------------------------------------------------------------------- /windows/progress-view.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/windows/progress-view.sln -------------------------------------------------------------------------------- /windows/progress-view/ProgressViewView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/windows/progress-view/ProgressViewView.cpp -------------------------------------------------------------------------------- /windows/progress-view/ProgressViewView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/windows/progress-view/ProgressViewView.h -------------------------------------------------------------------------------- /windows/progress-view/ProgressViewView.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/windows/progress-view/ProgressViewView.idl -------------------------------------------------------------------------------- /windows/progress-view/ProgressViewViewManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/windows/progress-view/ProgressViewViewManager.cpp -------------------------------------------------------------------------------- /windows/progress-view/ProgressViewViewManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/windows/progress-view/ProgressViewViewManager.h -------------------------------------------------------------------------------- /windows/progress-view/PropertySheet.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/windows/progress-view/PropertySheet.props -------------------------------------------------------------------------------- /windows/progress-view/ReactPackageProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/windows/progress-view/ReactPackageProvider.cpp -------------------------------------------------------------------------------- /windows/progress-view/ReactPackageProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/windows/progress-view/ReactPackageProvider.h -------------------------------------------------------------------------------- /windows/progress-view/ReactPackageProvider.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/windows/progress-view/ReactPackageProvider.idl -------------------------------------------------------------------------------- /windows/progress-view/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/windows/progress-view/packages.config -------------------------------------------------------------------------------- /windows/progress-view/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /windows/progress-view/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/windows/progress-view/pch.h -------------------------------------------------------------------------------- /windows/progress-view/progress-view.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/windows/progress-view/progress-view.vcxproj -------------------------------------------------------------------------------- /windows/progress-view/progress_view.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/windows/progress-view/progress_view.def -------------------------------------------------------------------------------- /windows/progress-view/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/windows/progress-view/readme.txt -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-progress-view/progress-view/HEAD/yarn.lock --------------------------------------------------------------------------------