├── .eslintrc.js
├── .gitignore
├── .npmignore
├── README.md
├── android
├── build.gradle
└── src
│ └── main
│ ├── AndroidManifest.xml
│ └── java
│ └── expo
│ └── modules
│ └── animatednumber
│ ├── ReactNativeAnimatedNumberModule.kt
│ └── ReactNativeAnimatedNumberView.kt
├── example
├── .gitignore
├── App.tsx
├── android
│ ├── .gitignore
│ ├── app
│ │ ├── build.gradle
│ │ ├── debug.keystore
│ │ ├── proguard-rules.pro
│ │ └── src
│ │ │ ├── debug
│ │ │ └── AndroidManifest.xml
│ │ │ └── main
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── java
│ │ │ └── expo
│ │ │ │ └── modules
│ │ │ │ └── animatednumber
│ │ │ │ └── example
│ │ │ │ ├── MainActivity.kt
│ │ │ │ └── MainApplication.kt
│ │ │ └── res
│ │ │ ├── drawable-hdpi
│ │ │ └── splashscreen_logo.png
│ │ │ ├── drawable-mdpi
│ │ │ └── splashscreen_logo.png
│ │ │ ├── drawable-xhdpi
│ │ │ └── splashscreen_logo.png
│ │ │ ├── drawable-xxhdpi
│ │ │ └── splashscreen_logo.png
│ │ │ ├── drawable-xxxhdpi
│ │ │ └── splashscreen_logo.png
│ │ │ ├── drawable
│ │ │ ├── ic_launcher_background.xml
│ │ │ └── rn_edit_text_material.xml
│ │ │ ├── mipmap-anydpi-v26
│ │ │ ├── ic_launcher.xml
│ │ │ └── ic_launcher_round.xml
│ │ │ ├── mipmap-hdpi
│ │ │ ├── ic_launcher.webp
│ │ │ ├── ic_launcher_foreground.webp
│ │ │ └── ic_launcher_round.webp
│ │ │ ├── mipmap-mdpi
│ │ │ ├── ic_launcher.webp
│ │ │ ├── ic_launcher_foreground.webp
│ │ │ └── ic_launcher_round.webp
│ │ │ ├── mipmap-xhdpi
│ │ │ ├── ic_launcher.webp
│ │ │ ├── ic_launcher_foreground.webp
│ │ │ └── ic_launcher_round.webp
│ │ │ ├── mipmap-xxhdpi
│ │ │ ├── ic_launcher.webp
│ │ │ ├── ic_launcher_foreground.webp
│ │ │ └── ic_launcher_round.webp
│ │ │ ├── mipmap-xxxhdpi
│ │ │ ├── ic_launcher.webp
│ │ │ ├── ic_launcher_foreground.webp
│ │ │ └── ic_launcher_round.webp
│ │ │ ├── values-night
│ │ │ └── colors.xml
│ │ │ └── values
│ │ │ ├── colors.xml
│ │ │ ├── strings.xml
│ │ │ └── styles.xml
│ ├── build.gradle
│ ├── gradle.properties
│ ├── gradle
│ │ └── wrapper
│ │ │ ├── gradle-wrapper.jar
│ │ │ └── gradle-wrapper.properties
│ ├── gradlew
│ ├── gradlew.bat
│ └── settings.gradle
├── app.json
├── assets
│ ├── adaptive-icon.png
│ ├── favicon.png
│ ├── icon.png
│ └── splash-icon.png
├── babel.config.js
├── index.ts
├── ios
│ ├── .gitignore
│ ├── .xcode.env
│ ├── Podfile
│ ├── Podfile.lock
│ ├── Podfile.properties.json
│ ├── reactnativeanimatednumberexample.xcodeproj
│ │ ├── project.pbxproj
│ │ └── xcshareddata
│ │ │ └── xcschemes
│ │ │ └── reactnativeanimatednumberexample.xcscheme
│ ├── reactnativeanimatednumberexample.xcworkspace
│ │ └── contents.xcworkspacedata
│ └── reactnativeanimatednumberexample
│ │ ├── AppDelegate.h
│ │ ├── AppDelegate.mm
│ │ ├── Images.xcassets
│ │ ├── AppIcon.appiconset
│ │ │ ├── App-Icon-1024x1024@1x.png
│ │ │ └── Contents.json
│ │ ├── Contents.json
│ │ ├── SplashScreenBackground.colorset
│ │ │ └── Contents.json
│ │ └── SplashScreenLogo.imageset
│ │ │ ├── Contents.json
│ │ │ ├── image.png
│ │ │ ├── image@2x.png
│ │ │ └── image@3x.png
│ │ ├── Info.plist
│ │ ├── PrivacyInfo.xcprivacy
│ │ ├── SplashScreen.storyboard
│ │ ├── Supporting
│ │ └── Expo.plist
│ │ ├── main.m
│ │ ├── noop-file.swift
│ │ ├── reactnativeanimatednumberexample-Bridging-Header.h
│ │ └── reactnativeanimatednumberexample.entitlements
├── metro.config.js
├── package-lock.json
├── package.json
├── tsconfig.json
└── webpack.config.js
├── expo-module.config.json
├── ios
├── AnimatedNumberContentView.swift
├── AnimatedNumberViewModel.swift
├── Color.swift
├── ReactNativeAnimatedNumber.podspec
├── ReactNativeAnimatedNumberModule.swift
└── ReactNativeAnimatedNumberView.swift
├── package-lock.json
├── package.json
├── src
├── ReactNativeAnimatedNumber.types.ts
├── ReactNativeAnimatedNumberModule.ts
├── ReactNativeAnimatedNumberView.tsx
└── index.ts
└── tsconfig.json
/.eslintrc.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | root: true,
3 | extends: ['universe/native', 'universe/web'],
4 | ignorePatterns: ['build'],
5 | };
6 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # OSX
2 | #
3 | .DS_Store
4 |
5 | # VSCode
6 | .vscode/
7 | jsconfig.json
8 |
9 | # Xcode
10 | #
11 | build/
12 | *.pbxuser
13 | !default.pbxuser
14 | *.mode1v3
15 | !default.mode1v3
16 | *.mode2v3
17 | !default.mode2v3
18 | *.perspectivev3
19 | !default.perspectivev3
20 | xcuserdata
21 | *.xccheckout
22 | *.moved-aside
23 | DerivedData
24 | *.hmap
25 | *.ipa
26 | *.xcuserstate
27 | project.xcworkspace
28 |
29 | # Android/IJ
30 | #
31 | .classpath
32 | .cxx
33 | .gradle
34 | .idea
35 | .project
36 | .settings
37 | local.properties
38 | android.iml
39 | android/app/libs
40 | android/keystores/debug.keystore
41 |
42 | # Cocoapods
43 | #
44 | example/ios/Pods
45 |
46 | # Ruby
47 | example/vendor/
48 |
49 | # node.js
50 | #
51 | node_modules/
52 | npm-debug.log
53 | yarn-debug.log
54 | yarn-error.log
55 |
56 | # Expo
57 | .expo/*
58 |
--------------------------------------------------------------------------------
/.npmignore:
--------------------------------------------------------------------------------
1 | # Exclude all top-level hidden directories by convention
2 | /.*/
3 |
4 | # Exclude tarballs generated by `npm pack`
5 | /*.tgz
6 |
7 | __mocks__
8 | __tests__
9 |
10 | /babel.config.js
11 | /android/src/androidTest/
12 | /android/src/test/
13 | /android/build/
14 | /example/
15 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # @quanna/react-native-animated-number
2 |
3 | A React Native component for displaying animated numbers, written in SwiftUI for seamless and super-smooth animations when changing numeric values.
4 |
5 | ## Animations
6 |
7 | The animations are handled natively using **SwiftUI**, ensuring smooth transitions when changing numbers. Animations are built into the number transitions, requiring no additional setup.
8 |
9 | ---
10 |
11 | ## Features
12 |
13 | - **Super smooth animations** for changing numbers.
14 | - Support for integers and decimal numbers.
15 | - Display units such as `%`, `kg`, or any custom label.
16 | - Fully customizable styles for numbers and units.
17 | - Easy integration with React Native projects.
18 |
19 | ---
20 |
21 | ## Installation
22 |
23 | You can install the package using either **Bun** or **Yarn**:
24 |
25 | ### Using Bun
26 | ```bash
27 | bun add @quanna/react-native-animated-number
28 | ```
29 |
30 | ### Using Yarn
31 | ```bash
32 | yarn add @quanna/react-native-animated-number
33 | ```
34 |
35 | ---
36 |
37 | ## Usage
38 |
39 | Here's an example of how to use `@quanna/react-native-animated-number` in your React Native project:
40 |
41 | ### Example
42 | ```tsx
43 | import React, { useState } from 'react';
44 | import { View, Button, StyleSheet } from 'react-native';
45 | import ReactNativeAnimatedNumberView from '@quanna/react-native-animated-number';
46 |
47 | export default function App() {
48 | const [number, setNumber] = useState(42.5);
49 | const [displayDecimal, setDisplayDecimal] = useState(false);
50 |
51 | return (
52 |
53 |
61 |
62 |
71 | );
72 | }
73 |
74 | const styles = StyleSheet.create({
75 | container: {
76 | flex: 1,
77 | justifyContent: 'center',
78 | alignItems: 'center',
79 | backgroundColor: '#f7f7f7',
80 | },
81 | animatedNumberContainer: {
82 | backgroundColor: 'green',
83 | padding: 10,
84 | borderRadius: 8,
85 | },
86 | numberText: {
87 | fontSize: 24,
88 | fontWeight: 'bold',
89 | color: 'white',
90 | },
91 | unitText: {
92 | fontSize: 16,
93 | color: 'yellow',
94 | },
95 | });
96 | ```
97 |
98 | ---
99 |
100 | ## Properties
101 |
102 | | Prop | Type | Default | Description |
103 | | ----------------- | --------------------------- | ------- | --------------------------------------------------------------------------- |
104 | | `number` | `number` | `0` | The numeric value to be displayed. Can be positive or negative. |
105 | | `displayDecimal` | `boolean` | `false` | Whether to display the number with decimals. |
106 | | `unit` | `string` | `""` | Unit to display next to the number (e.g., `%`, `kg`, `lbs`). |
107 | | `style` | `StyleProp` | `null` | Custom styles for the container wrapping the number and unit. |
108 | | `numberStyle` | `StyleProp` | `null` | Custom styles for the number text. |
109 | | `unitStyle` | `StyleProp` | `null` | Custom styles for the unit text. |
110 |
111 | ---
112 |
113 | ## Customization
114 |
115 | You can style the component to match your design using the following props:
116 |
117 | ### Outer Container Styles
118 | Use the `style` prop to customize the container view:
119 |
120 | ```tsx
121 |
128 | ```
129 |
130 | ### Number and Unit Styles
131 | Use `numberStyle` and `unitStyle` props to style the number and unit text:
132 |
133 | ```tsx
134 |
145 | ```
146 |
147 | ---
148 |
149 |
150 | ## License
151 |
152 | This library is licensed under the [MIT License](LICENSE). Feel free to use it in your projects.
153 |
154 | ---
155 |
156 | Happy coding! 🚀
157 |
--------------------------------------------------------------------------------
/android/build.gradle:
--------------------------------------------------------------------------------
1 | apply plugin: 'com.android.library'
2 |
3 | group = 'expo.modules.animatednumber'
4 | version = '0.1.0'
5 |
6 | def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
7 | apply from: expoModulesCorePlugin
8 | applyKotlinExpoModulesCorePlugin()
9 | useCoreDependencies()
10 | useExpoPublishing()
11 |
12 | // If you want to use the managed Android SDK versions from expo-modules-core, set this to true.
13 | // The Android SDK versions will be bumped from time to time in SDK releases and may introduce breaking changes in your module code.
14 | // Most of the time, you may like to manage the Android SDK versions yourself.
15 | def useManagedAndroidSdkVersions = false
16 | if (useManagedAndroidSdkVersions) {
17 | useDefaultAndroidSdkVersions()
18 | } else {
19 | buildscript {
20 | // Simple helper that allows the root project to override versions declared by this library.
21 | ext.safeExtGet = { prop, fallback ->
22 | rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback
23 | }
24 | }
25 | project.android {
26 | compileSdkVersion safeExtGet("compileSdkVersion", 34)
27 | defaultConfig {
28 | minSdkVersion safeExtGet("minSdkVersion", 21)
29 | targetSdkVersion safeExtGet("targetSdkVersion", 34)
30 | }
31 | }
32 | }
33 |
34 | android {
35 | namespace "expo.modules.animatednumber"
36 | defaultConfig {
37 | versionCode 1
38 | versionName "0.1.0"
39 | }
40 | lintOptions {
41 | abortOnError false
42 | }
43 | }
44 |
--------------------------------------------------------------------------------
/android/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/android/src/main/java/expo/modules/animatednumber/ReactNativeAnimatedNumberModule.kt:
--------------------------------------------------------------------------------
1 | package expo.modules.animatednumber
2 |
3 | import expo.modules.kotlin.modules.Module
4 | import expo.modules.kotlin.modules.ModuleDefinition
5 | import java.net.URL
6 |
7 | class ReactNativeAnimatedNumberModule : Module() {
8 | // Each module class must implement the definition function. The definition consists of components
9 | // that describes the module's functionality and behavior.
10 | // See https://docs.expo.dev/modules/module-api for more details about available components.
11 | override fun definition() = ModuleDefinition {
12 | // Sets the name of the module that JavaScript code will use to refer to the module. Takes a string as an argument.
13 | // Can be inferred from module's class name, but it's recommended to set it explicitly for clarity.
14 | // The module will be accessible from `requireNativeModule('ReactNativeAnimatedNumber')` in JavaScript.
15 | Name("ReactNativeAnimatedNumber")
16 |
17 | // Sets constant properties on the module. Can take a dictionary or a closure that returns a dictionary.
18 | Constants(
19 | "PI" to Math.PI
20 | )
21 |
22 | // Defines event names that the module can send to JavaScript.
23 | Events("onChange")
24 |
25 | // Defines a JavaScript synchronous function that runs the native code on the JavaScript thread.
26 | Function("hello") {
27 | "Hello world! 👋"
28 | }
29 |
30 | // Defines a JavaScript function that always returns a Promise and whose native code
31 | // is by default dispatched on the different thread than the JavaScript runtime runs on.
32 | AsyncFunction("setValueAsync") { value: String ->
33 | // Send an event to JavaScript.
34 | sendEvent("onChange", mapOf(
35 | "value" to value
36 | ))
37 | }
38 |
39 | // Enables the module to be used as a native view. Definition components that are accepted as part of
40 | // the view definition: Prop, Events.
41 | View(ReactNativeAnimatedNumberView::class) {
42 | // Defines a setter for the `url` prop.
43 | Prop("url") { view: ReactNativeAnimatedNumberView, url: URL ->
44 | view.webView.loadUrl(url.toString())
45 | }
46 | // Defines an event that the view can send to JavaScript.
47 | Events("onLoad")
48 | }
49 | }
50 | }
51 |
--------------------------------------------------------------------------------
/android/src/main/java/expo/modules/animatednumber/ReactNativeAnimatedNumberView.kt:
--------------------------------------------------------------------------------
1 | package expo.modules.animatednumber
2 |
3 | import android.content.Context
4 | import android.webkit.WebView
5 | import android.webkit.WebViewClient
6 | import expo.modules.kotlin.AppContext
7 | import expo.modules.kotlin.viewevent.EventDispatcher
8 | import expo.modules.kotlin.views.ExpoView
9 |
10 | class ReactNativeAnimatedNumberView(context: Context, appContext: AppContext) : ExpoView(context, appContext) {
11 | // Creates and initializes an event dispatcher for the `onLoad` event.
12 | // The name of the event is inferred from the value and needs to match the event name defined in the module.
13 | private val onLoad by EventDispatcher()
14 |
15 | // Defines a WebView that will be used as the root subview.
16 | internal val webView = WebView(context).apply {
17 | layoutParams = LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT)
18 | webViewClient = object : WebViewClient() {
19 | override fun onPageFinished(view: WebView, url: String) {
20 | // Sends an event to JavaScript. Triggers a callback defined on the view component in JavaScript.
21 | onLoad(mapOf("url" to url))
22 | }
23 | }
24 | }
25 |
26 | init {
27 | // Adds the WebView to the view hierarchy.
28 | addView(webView)
29 | }
30 | }
31 |
--------------------------------------------------------------------------------
/example/.gitignore:
--------------------------------------------------------------------------------
1 | # Learn more https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files
2 |
3 | # dependencies
4 | node_modules/
5 |
6 | # Expo
7 | .expo/
8 | dist/
9 | web-build/
10 | expo-env.d.ts
11 |
12 | # Native
13 | *.orig.*
14 | *.jks
15 | *.p8
16 | *.p12
17 | *.key
18 | *.mobileprovision
19 |
20 | # Metro
21 | .metro-health-check*
22 |
23 | # debug
24 | npm-debug.*
25 | yarn-debug.*
26 | yarn-error.*
27 |
28 | # macOS
29 | .DS_Store
30 | *.pem
31 |
32 | # local env files
33 | .env*.local
34 |
35 | # typescript
36 | *.tsbuildinfo
37 |
--------------------------------------------------------------------------------
/example/App.tsx:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { Button, SafeAreaView, Text, View } from "react-native";
3 | import { ReactNativeAnimatedNumberView } from "react-native-animated-number";
4 |
5 | export default function App() {
6 | const [number, setNumber] = React.useState(0);
7 | return (
8 |
9 | Module API Example
10 |
11 |
17 |
18 |
26 |
27 | {
30 | setNumber(Math.floor(Math.random() * 124));
31 | }}
32 | />
33 |
34 |
35 |
36 | );
37 | }
38 |
39 | const styles = {
40 | header: {
41 | fontSize: 30,
42 | margin: 20,
43 | },
44 |
45 | container: {
46 | flex: 1,
47 | backgroundColor: "#fff",
48 | },
49 | view: {
50 | flex: 1,
51 | height: 200,
52 | },
53 | };
54 |
--------------------------------------------------------------------------------
/example/android/.gitignore:
--------------------------------------------------------------------------------
1 | # OSX
2 | #
3 | .DS_Store
4 |
5 | # Android/IntelliJ
6 | #
7 | build/
8 | .idea
9 | .gradle
10 | local.properties
11 | *.iml
12 | *.hprof
13 | .cxx/
14 |
15 | # Bundle artifacts
16 | *.jsbundle
17 |
--------------------------------------------------------------------------------
/example/android/app/build.gradle:
--------------------------------------------------------------------------------
1 | apply plugin: "com.android.application"
2 | apply plugin: "org.jetbrains.kotlin.android"
3 | apply plugin: "com.facebook.react"
4 |
5 | def projectRoot = rootDir.getAbsoluteFile().getParentFile().getAbsolutePath()
6 |
7 | /**
8 | * This is the configuration block to customize your React Native Android app.
9 | * By default you don't need to apply any configuration, just uncomment the lines you need.
10 | */
11 | react {
12 | entryFile = file(["node", "-e", "require('expo/scripts/resolveAppEntry')", projectRoot, "android", "absolute"].execute(null, rootDir).text.trim())
13 | reactNativeDir = new File(["node", "--print", "require.resolve('react-native/package.json')"].execute(null, rootDir).text.trim()).getParentFile().getAbsoluteFile()
14 | hermesCommand = new File(["node", "--print", "require.resolve('react-native/package.json')"].execute(null, rootDir).text.trim()).getParentFile().getAbsolutePath() + "/sdks/hermesc/%OS-BIN%/hermesc"
15 | codegenDir = new File(["node", "--print", "require.resolve('@react-native/codegen/package.json', { paths: [require.resolve('react-native/package.json')] })"].execute(null, rootDir).text.trim()).getParentFile().getAbsoluteFile()
16 |
17 | // Use Expo CLI to bundle the app, this ensures the Metro config
18 | // works correctly with Expo projects.
19 | cliFile = new File(["node", "--print", "require.resolve('@expo/cli', { paths: [require.resolve('expo/package.json')] })"].execute(null, rootDir).text.trim())
20 | bundleCommand = "export:embed"
21 |
22 | /* Folders */
23 | // The root of your project, i.e. where "package.json" lives. Default is '../..'
24 | // root = file("../../")
25 | // The folder where the react-native NPM package is. Default is ../../node_modules/react-native
26 | // reactNativeDir = file("../../node_modules/react-native")
27 | // The folder where the react-native Codegen package is. Default is ../../node_modules/@react-native/codegen
28 | // codegenDir = file("../../node_modules/@react-native/codegen")
29 |
30 | /* Variants */
31 | // The list of variants to that are debuggable. For those we're going to
32 | // skip the bundling of the JS bundle and the assets. By default is just 'debug'.
33 | // If you add flavors like lite, prod, etc. you'll have to list your debuggableVariants.
34 | // debuggableVariants = ["liteDebug", "prodDebug"]
35 |
36 | /* Bundling */
37 | // A list containing the node command and its flags. Default is just 'node'.
38 | // nodeExecutableAndArgs = ["node"]
39 |
40 | //
41 | // The path to the CLI configuration file. Default is empty.
42 | // bundleConfig = file(../rn-cli.config.js)
43 | //
44 | // The name of the generated asset file containing your JS bundle
45 | // bundleAssetName = "MyApplication.android.bundle"
46 | //
47 | // The entry file for bundle generation. Default is 'index.android.js' or 'index.js'
48 | // entryFile = file("../js/MyApplication.android.js")
49 | //
50 | // A list of extra flags to pass to the 'bundle' commands.
51 | // See https://github.com/react-native-community/cli/blob/main/docs/commands.md#bundle
52 | // extraPackagerArgs = []
53 |
54 | /* Hermes Commands */
55 | // The hermes compiler command to run. By default it is 'hermesc'
56 | // hermesCommand = "$rootDir/my-custom-hermesc/bin/hermesc"
57 | //
58 | // The list of flags to pass to the Hermes compiler. By default is "-O", "-output-source-map"
59 | // hermesFlags = ["-O", "-output-source-map"]
60 |
61 | /* Autolinking */
62 | autolinkLibrariesWithApp()
63 | }
64 |
65 | /**
66 | * Set this to true to Run Proguard on Release builds to minify the Java bytecode.
67 | */
68 | def enableProguardInReleaseBuilds = (findProperty('android.enableProguardInReleaseBuilds') ?: false).toBoolean()
69 |
70 | /**
71 | * The preferred build flavor of JavaScriptCore (JSC)
72 | *
73 | * For example, to use the international variant, you can use:
74 | * `def jscFlavor = 'org.webkit:android-jsc-intl:+'`
75 | *
76 | * The international variant includes ICU i18n library and necessary data
77 | * allowing to use e.g. `Date.toLocaleString` and `String.localeCompare` that
78 | * give correct results when using with locales other than en-US. Note that
79 | * this variant is about 6MiB larger per architecture than default.
80 | */
81 | def jscFlavor = 'org.webkit:android-jsc:+'
82 |
83 | android {
84 | ndkVersion rootProject.ext.ndkVersion
85 |
86 | buildToolsVersion rootProject.ext.buildToolsVersion
87 | compileSdk rootProject.ext.compileSdkVersion
88 |
89 | namespace 'expo.modules.animatednumber.example'
90 | defaultConfig {
91 | applicationId 'expo.modules.animatednumber.example'
92 | minSdkVersion rootProject.ext.minSdkVersion
93 | targetSdkVersion rootProject.ext.targetSdkVersion
94 | versionCode 1
95 | versionName "1.0.0"
96 | }
97 | signingConfigs {
98 | debug {
99 | storeFile file('debug.keystore')
100 | storePassword 'android'
101 | keyAlias 'androiddebugkey'
102 | keyPassword 'android'
103 | }
104 | }
105 | buildTypes {
106 | debug {
107 | signingConfig signingConfigs.debug
108 | }
109 | release {
110 | // Caution! In production, you need to generate your own keystore file.
111 | // see https://reactnative.dev/docs/signed-apk-android.
112 | signingConfig signingConfigs.debug
113 | shrinkResources (findProperty('android.enableShrinkResourcesInReleaseBuilds')?.toBoolean() ?: false)
114 | minifyEnabled enableProguardInReleaseBuilds
115 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
116 | crunchPngs (findProperty('android.enablePngCrunchInReleaseBuilds')?.toBoolean() ?: true)
117 | }
118 | }
119 | packagingOptions {
120 | jniLibs {
121 | useLegacyPackaging (findProperty('expo.useLegacyPackaging')?.toBoolean() ?: false)
122 | }
123 | }
124 | androidResources {
125 | ignoreAssetsPattern '!.svn:!.git:!.ds_store:!*.scc:!CVS:!thumbs.db:!picasa.ini:!*~'
126 | }
127 | }
128 |
129 | // Apply static values from `gradle.properties` to the `android.packagingOptions`
130 | // Accepts values in comma delimited lists, example:
131 | // android.packagingOptions.pickFirsts=/LICENSE,**/picasa.ini
132 | ["pickFirsts", "excludes", "merges", "doNotStrip"].each { prop ->
133 | // Split option: 'foo,bar' -> ['foo', 'bar']
134 | def options = (findProperty("android.packagingOptions.$prop") ?: "").split(",");
135 | // Trim all elements in place.
136 | for (i in 0.. 0) {
141 | println "android.packagingOptions.$prop += $options ($options.length)"
142 | // Ex: android.packagingOptions.pickFirsts += '**/SCCS/**'
143 | options.each {
144 | android.packagingOptions[prop] += it
145 | }
146 | }
147 | }
148 |
149 | dependencies {
150 | // The version of react-native is set by the React Native Gradle Plugin
151 | implementation("com.facebook.react:react-android")
152 |
153 | def isGifEnabled = (findProperty('expo.gif.enabled') ?: "") == "true";
154 | def isWebpEnabled = (findProperty('expo.webp.enabled') ?: "") == "true";
155 | def isWebpAnimatedEnabled = (findProperty('expo.webp.animated') ?: "") == "true";
156 |
157 | if (isGifEnabled) {
158 | // For animated gif support
159 | implementation("com.facebook.fresco:animated-gif:${reactAndroidLibs.versions.fresco.get()}")
160 | }
161 |
162 | if (isWebpEnabled) {
163 | // For webp support
164 | implementation("com.facebook.fresco:webpsupport:${reactAndroidLibs.versions.fresco.get()}")
165 | if (isWebpAnimatedEnabled) {
166 | // Animated webp support
167 | implementation("com.facebook.fresco:animated-webp:${reactAndroidLibs.versions.fresco.get()}")
168 | }
169 | }
170 |
171 | if (hermesEnabled.toBoolean()) {
172 | implementation("com.facebook.react:hermes-android")
173 | } else {
174 | implementation jscFlavor
175 | }
176 | }
177 |
--------------------------------------------------------------------------------
/example/android/app/debug.keystore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/anhquan291/react-native-animated-number/102c52449f5a1078103a4da5ee138ec1ae2df68c/example/android/app/debug.keystore
--------------------------------------------------------------------------------
/example/android/app/proguard-rules.pro:
--------------------------------------------------------------------------------
1 | # Add project specific ProGuard rules here.
2 | # By default, the flags in this file are appended to flags specified
3 | # in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt
4 | # You can edit the include path and order by changing the proguardFiles
5 | # directive in build.gradle.
6 | #
7 | # For more details, see
8 | # http://developer.android.com/guide/developing/tools/proguard.html
9 |
10 | # react-native-reanimated
11 | -keep class com.swmansion.reanimated.** { *; }
12 | -keep class com.facebook.react.turbomodule.** { *; }
13 |
14 | # Add any project specific keep options here:
15 |
--------------------------------------------------------------------------------
/example/android/app/src/debug/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/example/android/app/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
--------------------------------------------------------------------------------
/example/android/app/src/main/java/expo/modules/animatednumber/example/MainActivity.kt:
--------------------------------------------------------------------------------
1 | package expo.modules.animatednumber.example
2 |
3 | import android.os.Build
4 | import android.os.Bundle
5 |
6 | import com.facebook.react.ReactActivity
7 | import com.facebook.react.ReactActivityDelegate
8 | import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint.fabricEnabled
9 | import com.facebook.react.defaults.DefaultReactActivityDelegate
10 |
11 | import expo.modules.ReactActivityDelegateWrapper
12 |
13 | class MainActivity : ReactActivity() {
14 | override fun onCreate(savedInstanceState: Bundle?) {
15 | // Set the theme to AppTheme BEFORE onCreate to support
16 | // coloring the background, status bar, and navigation bar.
17 | // This is required for expo-splash-screen.
18 | setTheme(R.style.AppTheme);
19 | super.onCreate(null)
20 | }
21 |
22 | /**
23 | * Returns the name of the main component registered from JavaScript. This is used to schedule
24 | * rendering of the component.
25 | */
26 | override fun getMainComponentName(): String = "main"
27 |
28 | /**
29 | * Returns the instance of the [ReactActivityDelegate]. We use [DefaultReactActivityDelegate]
30 | * which allows you to enable New Architecture with a single boolean flags [fabricEnabled]
31 | */
32 | override fun createReactActivityDelegate(): ReactActivityDelegate {
33 | return ReactActivityDelegateWrapper(
34 | this,
35 | BuildConfig.IS_NEW_ARCHITECTURE_ENABLED,
36 | object : DefaultReactActivityDelegate(
37 | this,
38 | mainComponentName,
39 | fabricEnabled
40 | ){})
41 | }
42 |
43 | /**
44 | * Align the back button behavior with Android S
45 | * where moving root activities to background instead of finishing activities.
46 | * @see onBackPressed
47 | */
48 | override fun invokeDefaultOnBackPressed() {
49 | if (Build.VERSION.SDK_INT <= Build.VERSION_CODES.R) {
50 | if (!moveTaskToBack(false)) {
51 | // For non-root activities, use the default implementation to finish them.
52 | super.invokeDefaultOnBackPressed()
53 | }
54 | return
55 | }
56 |
57 | // Use the default back button implementation on Android S
58 | // because it's doing more than [Activity.moveTaskToBack] in fact.
59 | super.invokeDefaultOnBackPressed()
60 | }
61 | }
62 |
--------------------------------------------------------------------------------
/example/android/app/src/main/java/expo/modules/animatednumber/example/MainApplication.kt:
--------------------------------------------------------------------------------
1 | package expo.modules.animatednumber.example
2 |
3 | import android.app.Application
4 | import android.content.res.Configuration
5 |
6 | import com.facebook.react.PackageList
7 | import com.facebook.react.ReactApplication
8 | import com.facebook.react.ReactNativeHost
9 | import com.facebook.react.ReactPackage
10 | import com.facebook.react.ReactHost
11 | import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint.load
12 | import com.facebook.react.defaults.DefaultReactNativeHost
13 | import com.facebook.react.soloader.OpenSourceMergedSoMapping
14 | import com.facebook.soloader.SoLoader
15 |
16 | import expo.modules.ApplicationLifecycleDispatcher
17 | import expo.modules.ReactNativeHostWrapper
18 |
19 | class MainApplication : Application(), ReactApplication {
20 |
21 | override val reactNativeHost: ReactNativeHost = ReactNativeHostWrapper(
22 | this,
23 | object : DefaultReactNativeHost(this) {
24 | override fun getPackages(): List {
25 | val packages = PackageList(this).packages
26 | // Packages that cannot be autolinked yet can be added manually here, for example:
27 | // packages.add(new MyReactNativePackage());
28 | return packages
29 | }
30 |
31 | override fun getJSMainModuleName(): String = ".expo/.virtual-metro-entry"
32 |
33 | override fun getUseDeveloperSupport(): Boolean = BuildConfig.DEBUG
34 |
35 | override val isNewArchEnabled: Boolean = BuildConfig.IS_NEW_ARCHITECTURE_ENABLED
36 | override val isHermesEnabled: Boolean = BuildConfig.IS_HERMES_ENABLED
37 | }
38 | )
39 |
40 | override val reactHost: ReactHost
41 | get() = ReactNativeHostWrapper.createReactHost(applicationContext, reactNativeHost)
42 |
43 | override fun onCreate() {
44 | super.onCreate()
45 | SoLoader.init(this, OpenSourceMergedSoMapping)
46 | if (BuildConfig.IS_NEW_ARCHITECTURE_ENABLED) {
47 | // If you opted-in for the New Architecture, we load the native entry point for this app.
48 | load()
49 | }
50 | ApplicationLifecycleDispatcher.onApplicationCreate(this)
51 | }
52 |
53 | override fun onConfigurationChanged(newConfig: Configuration) {
54 | super.onConfigurationChanged(newConfig)
55 | ApplicationLifecycleDispatcher.onConfigurationChanged(this, newConfig)
56 | }
57 | }
58 |
--------------------------------------------------------------------------------
/example/android/app/src/main/res/drawable-hdpi/splashscreen_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/anhquan291/react-native-animated-number/102c52449f5a1078103a4da5ee138ec1ae2df68c/example/android/app/src/main/res/drawable-hdpi/splashscreen_logo.png
--------------------------------------------------------------------------------
/example/android/app/src/main/res/drawable-mdpi/splashscreen_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/anhquan291/react-native-animated-number/102c52449f5a1078103a4da5ee138ec1ae2df68c/example/android/app/src/main/res/drawable-mdpi/splashscreen_logo.png
--------------------------------------------------------------------------------
/example/android/app/src/main/res/drawable-xhdpi/splashscreen_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/anhquan291/react-native-animated-number/102c52449f5a1078103a4da5ee138ec1ae2df68c/example/android/app/src/main/res/drawable-xhdpi/splashscreen_logo.png
--------------------------------------------------------------------------------
/example/android/app/src/main/res/drawable-xxhdpi/splashscreen_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/anhquan291/react-native-animated-number/102c52449f5a1078103a4da5ee138ec1ae2df68c/example/android/app/src/main/res/drawable-xxhdpi/splashscreen_logo.png
--------------------------------------------------------------------------------
/example/android/app/src/main/res/drawable-xxxhdpi/splashscreen_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/anhquan291/react-native-animated-number/102c52449f5a1078103a4da5ee138ec1ae2df68c/example/android/app/src/main/res/drawable-xxxhdpi/splashscreen_logo.png
--------------------------------------------------------------------------------
/example/android/app/src/main/res/drawable/ic_launcher_background.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
--------------------------------------------------------------------------------
/example/android/app/src/main/res/drawable/rn_edit_text_material.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
22 |
23 |
24 |
33 |
34 |
35 |
36 |
37 |
38 |
--------------------------------------------------------------------------------
/example/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/example/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/anhquan291/react-native-animated-number/102c52449f5a1078103a4da5ee138ec1ae2df68c/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/anhquan291/react-native-animated-number/102c52449f5a1078103a4da5ee138ec1ae2df68c/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp
--------------------------------------------------------------------------------
/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/anhquan291/react-native-animated-number/102c52449f5a1078103a4da5ee138ec1ae2df68c/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/anhquan291/react-native-animated-number/102c52449f5a1078103a4da5ee138ec1ae2df68c/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/anhquan291/react-native-animated-number/102c52449f5a1078103a4da5ee138ec1ae2df68c/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp
--------------------------------------------------------------------------------
/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/anhquan291/react-native-animated-number/102c52449f5a1078103a4da5ee138ec1ae2df68c/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/anhquan291/react-native-animated-number/102c52449f5a1078103a4da5ee138ec1ae2df68c/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/anhquan291/react-native-animated-number/102c52449f5a1078103a4da5ee138ec1ae2df68c/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp
--------------------------------------------------------------------------------
/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/anhquan291/react-native-animated-number/102c52449f5a1078103a4da5ee138ec1ae2df68c/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/anhquan291/react-native-animated-number/102c52449f5a1078103a4da5ee138ec1ae2df68c/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/anhquan291/react-native-animated-number/102c52449f5a1078103a4da5ee138ec1ae2df68c/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp
--------------------------------------------------------------------------------
/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/anhquan291/react-native-animated-number/102c52449f5a1078103a4da5ee138ec1ae2df68c/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/anhquan291/react-native-animated-number/102c52449f5a1078103a4da5ee138ec1ae2df68c/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/anhquan291/react-native-animated-number/102c52449f5a1078103a4da5ee138ec1ae2df68c/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp
--------------------------------------------------------------------------------
/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/anhquan291/react-native-animated-number/102c52449f5a1078103a4da5ee138ec1ae2df68c/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/example/android/app/src/main/res/values-night/colors.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/example/android/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 | #ffffff
3 | #ffffff
4 | #023c69
5 | #ffffff
6 |
--------------------------------------------------------------------------------
/example/android/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | react-native-animated-number-example
3 | contain
4 | false
5 |
--------------------------------------------------------------------------------
/example/android/app/src/main/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
9 |
14 |
17 |
--------------------------------------------------------------------------------
/example/android/build.gradle:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 |
3 | buildscript {
4 | ext {
5 | buildToolsVersion = findProperty('android.buildToolsVersion') ?: '35.0.0'
6 | minSdkVersion = Integer.parseInt(findProperty('android.minSdkVersion') ?: '24')
7 | compileSdkVersion = Integer.parseInt(findProperty('android.compileSdkVersion') ?: '35')
8 | targetSdkVersion = Integer.parseInt(findProperty('android.targetSdkVersion') ?: '34')
9 | kotlinVersion = findProperty('android.kotlinVersion') ?: '1.9.24'
10 |
11 | ndkVersion = "26.1.10909125"
12 | }
13 | repositories {
14 | google()
15 | mavenCentral()
16 | }
17 | dependencies {
18 | classpath('com.android.tools.build:gradle')
19 | classpath('com.facebook.react:react-native-gradle-plugin')
20 | classpath('org.jetbrains.kotlin:kotlin-gradle-plugin')
21 | }
22 | }
23 |
24 | apply plugin: "com.facebook.react.rootproject"
25 |
26 | allprojects {
27 | repositories {
28 | maven {
29 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
30 | url(new File(['node', '--print', "require.resolve('react-native/package.json')"].execute(null, rootDir).text.trim(), '../android'))
31 | }
32 | maven {
33 | // Android JSC is installed from npm
34 | url(new File(['node', '--print', "require.resolve('jsc-android/package.json', { paths: [require.resolve('react-native/package.json')] })"].execute(null, rootDir).text.trim(), '../dist'))
35 | }
36 |
37 | google()
38 | mavenCentral()
39 | maven { url 'https://www.jitpack.io' }
40 | }
41 | }
42 |
--------------------------------------------------------------------------------
/example/android/gradle.properties:
--------------------------------------------------------------------------------
1 | # Project-wide Gradle settings.
2 |
3 | # IDE (e.g. Android Studio) users:
4 | # Gradle settings configured through the IDE *will override*
5 | # any settings specified in this file.
6 |
7 | # For more details on how to configure your build environment visit
8 | # http://www.gradle.org/docs/current/userguide/build_environment.html
9 |
10 | # Specifies the JVM arguments used for the daemon process.
11 | # The setting is particularly useful for tweaking memory settings.
12 | # Default value: -Xmx512m -XX:MaxMetaspaceSize=256m
13 | org.gradle.jvmargs=-Xmx2048m -XX:MaxMetaspaceSize=512m
14 |
15 | # When configured, Gradle will run in incubating parallel mode.
16 | # This option should only be used with decoupled projects. More details, visit
17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
18 | # org.gradle.parallel=true
19 |
20 | # AndroidX package structure to make it clearer which packages are bundled with the
21 | # Android operating system, and which are packaged with your app's APK
22 | # https://developer.android.com/topic/libraries/support-library/androidx-rn
23 | android.useAndroidX=true
24 |
25 | # Enable AAPT2 PNG crunching
26 | android.enablePngCrunchInReleaseBuilds=true
27 |
28 | # Use this property to specify which architecture you want to build.
29 | # You can also override it from the CLI using
30 | # ./gradlew -PreactNativeArchitectures=x86_64
31 | reactNativeArchitectures=armeabi-v7a,arm64-v8a,x86,x86_64
32 |
33 | # Use this property to enable support to the new architecture.
34 | # This will allow you to use TurboModules and the Fabric render in
35 | # your application. You should enable this flag either if you want
36 | # to write custom TurboModules/Fabric components OR use libraries that
37 | # are providing them.
38 | newArchEnabled=true
39 |
40 | # Use this property to enable or disable the Hermes JS engine.
41 | # If set to false, you will be using JSC instead.
42 | hermesEnabled=true
43 |
44 | # Enable GIF support in React Native images (~200 B increase)
45 | expo.gif.enabled=true
46 | # Enable webp support in React Native images (~85 KB increase)
47 | expo.webp.enabled=true
48 | # Enable animated webp support (~3.4 MB increase)
49 | # Disabled by default because iOS doesn't support animated webp
50 | expo.webp.animated=false
51 |
52 | # Enable network inspector
53 | EX_DEV_CLIENT_NETWORK_INSPECTOR=true
54 |
55 | # Use legacy packaging to compress native libraries in the resulting APK.
56 | expo.useLegacyPackaging=false
57 |
--------------------------------------------------------------------------------
/example/android/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/anhquan291/react-native-animated-number/102c52449f5a1078103a4da5ee138ec1ae2df68c/example/android/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/example/android/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | distributionBase=GRADLE_USER_HOME
2 | distributionPath=wrapper/dists
3 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-all.zip
4 | networkTimeout=10000
5 | validateDistributionUrl=true
6 | zipStoreBase=GRADLE_USER_HOME
7 | zipStorePath=wrapper/dists
8 |
--------------------------------------------------------------------------------
/example/android/gradlew:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 |
3 | #
4 | # Copyright © 2015-2021 the original authors.
5 | #
6 | # Licensed under the Apache License, Version 2.0 (the "License");
7 | # you may not use this file except in compliance with the License.
8 | # You may obtain a copy of the License at
9 | #
10 | # https://www.apache.org/licenses/LICENSE-2.0
11 | #
12 | # Unless required by applicable law or agreed to in writing, software
13 | # distributed under the License is distributed on an "AS IS" BASIS,
14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | # See the License for the specific language governing permissions and
16 | # limitations under the License.
17 | #
18 | # SPDX-License-Identifier: Apache-2.0
19 | #
20 |
21 | ##############################################################################
22 | #
23 | # Gradle start up script for POSIX generated by Gradle.
24 | #
25 | # Important for running:
26 | #
27 | # (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is
28 | # noncompliant, but you have some other compliant shell such as ksh or
29 | # bash, then to run this script, type that shell name before the whole
30 | # command line, like:
31 | #
32 | # ksh Gradle
33 | #
34 | # Busybox and similar reduced shells will NOT work, because this script
35 | # requires all of these POSIX shell features:
36 | # * functions;
37 | # * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,
38 | # «${var#prefix}», «${var%suffix}», and «$( cmd )»;
39 | # * compound commands having a testable exit status, especially «case»;
40 | # * various built-in commands including «command», «set», and «ulimit».
41 | #
42 | # Important for patching:
43 | #
44 | # (2) This script targets any POSIX shell, so it avoids extensions provided
45 | # by Bash, Ksh, etc; in particular arrays are avoided.
46 | #
47 | # The "traditional" practice of packing multiple parameters into a
48 | # space-separated string is a well documented source of bugs and security
49 | # problems, so this is (mostly) avoided, by progressively accumulating
50 | # options in "$@", and eventually passing that to Java.
51 | #
52 | # Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS,
53 | # and GRADLE_OPTS) rely on word-splitting, this is performed explicitly;
54 | # see the in-line comments for details.
55 | #
56 | # There are tweaks for specific operating systems such as AIX, CygWin,
57 | # Darwin, MinGW, and NonStop.
58 | #
59 | # (3) This script is generated from the Groovy template
60 | # https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
61 | # within the Gradle project.
62 | #
63 | # You can find Gradle at https://github.com/gradle/gradle/.
64 | #
65 | ##############################################################################
66 |
67 | # Attempt to set APP_HOME
68 |
69 | # Resolve links: $0 may be a link
70 | app_path=$0
71 |
72 | # Need this for daisy-chained symlinks.
73 | while
74 | APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path
75 | [ -h "$app_path" ]
76 | do
77 | ls=$( ls -ld "$app_path" )
78 | link=${ls#*' -> '}
79 | case $link in #(
80 | /*) app_path=$link ;; #(
81 | *) app_path=$APP_HOME$link ;;
82 | esac
83 | done
84 |
85 | # This is normally unused
86 | # shellcheck disable=SC2034
87 | APP_BASE_NAME=${0##*/}
88 | # Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
89 | APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
90 | ' "$PWD" ) || exit
91 |
92 | # Use the maximum available, or set MAX_FD != -1 to use that value.
93 | MAX_FD=maximum
94 |
95 | warn () {
96 | echo "$*"
97 | } >&2
98 |
99 | die () {
100 | echo
101 | echo "$*"
102 | echo
103 | exit 1
104 | } >&2
105 |
106 | # OS specific support (must be 'true' or 'false').
107 | cygwin=false
108 | msys=false
109 | darwin=false
110 | nonstop=false
111 | case "$( uname )" in #(
112 | CYGWIN* ) cygwin=true ;; #(
113 | Darwin* ) darwin=true ;; #(
114 | MSYS* | MINGW* ) msys=true ;; #(
115 | NONSTOP* ) nonstop=true ;;
116 | esac
117 |
118 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
119 |
120 |
121 | # Determine the Java command to use to start the JVM.
122 | if [ -n "$JAVA_HOME" ] ; then
123 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
124 | # IBM's JDK on AIX uses strange locations for the executables
125 | JAVACMD=$JAVA_HOME/jre/sh/java
126 | else
127 | JAVACMD=$JAVA_HOME/bin/java
128 | fi
129 | if [ ! -x "$JAVACMD" ] ; then
130 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
131 |
132 | Please set the JAVA_HOME variable in your environment to match the
133 | location of your Java installation."
134 | fi
135 | else
136 | JAVACMD=java
137 | if ! command -v java >/dev/null 2>&1
138 | then
139 | die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
140 |
141 | Please set the JAVA_HOME variable in your environment to match the
142 | location of your Java installation."
143 | fi
144 | fi
145 |
146 | # Increase the maximum file descriptors if we can.
147 | if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
148 | case $MAX_FD in #(
149 | max*)
150 | # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
151 | # shellcheck disable=SC2039,SC3045
152 | MAX_FD=$( ulimit -H -n ) ||
153 | warn "Could not query maximum file descriptor limit"
154 | esac
155 | case $MAX_FD in #(
156 | '' | soft) :;; #(
157 | *)
158 | # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
159 | # shellcheck disable=SC2039,SC3045
160 | ulimit -n "$MAX_FD" ||
161 | warn "Could not set maximum file descriptor limit to $MAX_FD"
162 | esac
163 | fi
164 |
165 | # Collect all arguments for the java command, stacking in reverse order:
166 | # * args from the command line
167 | # * the main class name
168 | # * -classpath
169 | # * -D...appname settings
170 | # * --module-path (only if needed)
171 | # * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables.
172 |
173 | # For Cygwin or MSYS, switch paths to Windows format before running java
174 | if "$cygwin" || "$msys" ; then
175 | APP_HOME=$( cygpath --path --mixed "$APP_HOME" )
176 | CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" )
177 |
178 | JAVACMD=$( cygpath --unix "$JAVACMD" )
179 |
180 | # Now convert the arguments - kludge to limit ourselves to /bin/sh
181 | for arg do
182 | if
183 | case $arg in #(
184 | -*) false ;; # don't mess with options #(
185 | /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath
186 | [ -e "$t" ] ;; #(
187 | *) false ;;
188 | esac
189 | then
190 | arg=$( cygpath --path --ignore --mixed "$arg" )
191 | fi
192 | # Roll the args list around exactly as many times as the number of
193 | # args, so each arg winds up back in the position where it started, but
194 | # possibly modified.
195 | #
196 | # NB: a `for` loop captures its iteration list before it begins, so
197 | # changing the positional parameters here affects neither the number of
198 | # iterations, nor the values presented in `arg`.
199 | shift # remove old arg
200 | set -- "$@" "$arg" # push replacement arg
201 | done
202 | fi
203 |
204 |
205 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
206 | DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
207 |
208 | # Collect all arguments for the java command:
209 | # * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
210 | # and any embedded shellness will be escaped.
211 | # * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
212 | # treated as '${Hostname}' itself on the command line.
213 |
214 | set -- \
215 | "-Dorg.gradle.appname=$APP_BASE_NAME" \
216 | -classpath "$CLASSPATH" \
217 | org.gradle.wrapper.GradleWrapperMain \
218 | "$@"
219 |
220 | # Stop when "xargs" is not available.
221 | if ! command -v xargs >/dev/null 2>&1
222 | then
223 | die "xargs is not available"
224 | fi
225 |
226 | # Use "xargs" to parse quoted args.
227 | #
228 | # With -n1 it outputs one arg per line, with the quotes and backslashes removed.
229 | #
230 | # In Bash we could simply go:
231 | #
232 | # readarray ARGS < <( xargs -n1 <<<"$var" ) &&
233 | # set -- "${ARGS[@]}" "$@"
234 | #
235 | # but POSIX shell has neither arrays nor command substitution, so instead we
236 | # post-process each arg (as a line of input to sed) to backslash-escape any
237 | # character that might be a shell metacharacter, then use eval to reverse
238 | # that process (while maintaining the separation between arguments), and wrap
239 | # the whole thing up as a single "set" statement.
240 | #
241 | # This will of course break if any of these variables contains a newline or
242 | # an unmatched quote.
243 | #
244 |
245 | eval "set -- $(
246 | printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" |
247 | xargs -n1 |
248 | sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' |
249 | tr '\n' ' '
250 | )" '"$@"'
251 |
252 | exec "$JAVACMD" "$@"
253 |
--------------------------------------------------------------------------------
/example/android/gradlew.bat:
--------------------------------------------------------------------------------
1 | @rem
2 | @rem Copyright 2015 the original author or authors.
3 | @rem
4 | @rem Licensed under the Apache License, Version 2.0 (the "License");
5 | @rem you may not use this file except in compliance with the License.
6 | @rem You may obtain a copy of the License at
7 | @rem
8 | @rem https://www.apache.org/licenses/LICENSE-2.0
9 | @rem
10 | @rem Unless required by applicable law or agreed to in writing, software
11 | @rem distributed under the License is distributed on an "AS IS" BASIS,
12 | @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 | @rem See the License for the specific language governing permissions and
14 | @rem limitations under the License.
15 | @rem
16 | @rem SPDX-License-Identifier: Apache-2.0
17 | @rem
18 |
19 | @if "%DEBUG%"=="" @echo off
20 | @rem ##########################################################################
21 | @rem
22 | @rem Gradle startup script for Windows
23 | @rem
24 | @rem ##########################################################################
25 |
26 | @rem Set local scope for the variables with windows NT shell
27 | if "%OS%"=="Windows_NT" setlocal
28 |
29 | set DIRNAME=%~dp0
30 | if "%DIRNAME%"=="" set DIRNAME=.
31 | @rem This is normally unused
32 | set APP_BASE_NAME=%~n0
33 | set APP_HOME=%DIRNAME%
34 |
35 | @rem Resolve any "." and ".." in APP_HOME to make it shorter.
36 | for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
37 |
38 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
39 | set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
40 |
41 | @rem Find java.exe
42 | if defined JAVA_HOME goto findJavaFromJavaHome
43 |
44 | set JAVA_EXE=java.exe
45 | %JAVA_EXE% -version >NUL 2>&1
46 | if %ERRORLEVEL% equ 0 goto execute
47 |
48 | echo. 1>&2
49 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2
50 | echo. 1>&2
51 | echo Please set the JAVA_HOME variable in your environment to match the 1>&2
52 | echo location of your Java installation. 1>&2
53 |
54 | goto fail
55 |
56 | :findJavaFromJavaHome
57 | set JAVA_HOME=%JAVA_HOME:"=%
58 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe
59 |
60 | if exist "%JAVA_EXE%" goto execute
61 |
62 | echo. 1>&2
63 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2
64 | echo. 1>&2
65 | echo Please set the JAVA_HOME variable in your environment to match the 1>&2
66 | echo location of your Java installation. 1>&2
67 |
68 | goto fail
69 |
70 | :execute
71 | @rem Setup the command line
72 |
73 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
74 |
75 |
76 | @rem Execute Gradle
77 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
78 |
79 | :end
80 | @rem End local scope for the variables with windows NT shell
81 | if %ERRORLEVEL% equ 0 goto mainEnd
82 |
83 | :fail
84 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
85 | rem the _cmd.exe /c_ return code!
86 | set EXIT_CODE=%ERRORLEVEL%
87 | if %EXIT_CODE% equ 0 set EXIT_CODE=1
88 | if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE%
89 | exit /b %EXIT_CODE%
90 |
91 | :mainEnd
92 | if "%OS%"=="Windows_NT" endlocal
93 |
94 | :omega
95 |
--------------------------------------------------------------------------------
/example/android/settings.gradle:
--------------------------------------------------------------------------------
1 | pluginManagement {
2 | includeBuild(new File(["node", "--print", "require.resolve('@react-native/gradle-plugin/package.json')"].execute(null, rootDir).text.trim()).getParentFile().toString())
3 | }
4 | plugins { id("com.facebook.react.settings") }
5 |
6 | extensions.configure(com.facebook.react.ReactSettingsExtension) { ex ->
7 | if (System.getenv('EXPO_USE_COMMUNITY_AUTOLINKING') == '1') {
8 | ex.autolinkLibrariesFromCommand()
9 | } else {
10 | def command = [
11 | 'node',
12 | '--no-warnings',
13 | '--eval',
14 | 'require(require.resolve(\'expo-modules-autolinking\', { paths: [require.resolve(\'expo/package.json\')] }))(process.argv.slice(1))',
15 | 'react-native-config',
16 | '--json',
17 | '--platform',
18 | 'android'
19 | ].toList()
20 | ex.autolinkLibrariesFromCommand(command)
21 | }
22 | }
23 |
24 | rootProject.name = 'react-native-animated-number-example'
25 |
26 | dependencyResolutionManagement {
27 | versionCatalogs {
28 | reactAndroidLibs {
29 | from(files(new File(["node", "--print", "require.resolve('react-native/package.json')"].execute(null, rootDir).text.trim(), "../gradle/libs.versions.toml")))
30 | }
31 | }
32 | }
33 |
34 | apply from: new File(["node", "--print", "require.resolve('expo/package.json')"].execute(null, rootDir).text.trim(), "../scripts/autolinking.gradle");
35 | useExpoModules()
36 |
37 | include ':app'
38 | includeBuild(new File(["node", "--print", "require.resolve('@react-native/gradle-plugin/package.json', { paths: [require.resolve('react-native/package.json')] })"].execute(null, rootDir).text.trim()).getParentFile())
39 |
--------------------------------------------------------------------------------
/example/app.json:
--------------------------------------------------------------------------------
1 | {
2 | "expo": {
3 | "name": "react-native-animated-number-example",
4 | "slug": "react-native-animated-number-example",
5 | "version": "1.0.0",
6 | "orientation": "portrait",
7 | "icon": "./assets/icon.png",
8 | "userInterfaceStyle": "light",
9 | "newArchEnabled": true,
10 | "splash": {
11 | "image": "./assets/splash-icon.png",
12 | "resizeMode": "contain",
13 | "backgroundColor": "#ffffff"
14 | },
15 | "ios": {
16 | "supportsTablet": true,
17 | "bundleIdentifier": "expo.modules.animatednumber.example"
18 | },
19 | "android": {
20 | "adaptiveIcon": {
21 | "foregroundImage": "./assets/adaptive-icon.png",
22 | "backgroundColor": "#ffffff"
23 | },
24 | "package": "expo.modules.animatednumber.example"
25 | },
26 | "web": {
27 | "favicon": "./assets/favicon.png"
28 | }
29 | }
30 | }
31 |
--------------------------------------------------------------------------------
/example/assets/adaptive-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/anhquan291/react-native-animated-number/102c52449f5a1078103a4da5ee138ec1ae2df68c/example/assets/adaptive-icon.png
--------------------------------------------------------------------------------
/example/assets/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/anhquan291/react-native-animated-number/102c52449f5a1078103a4da5ee138ec1ae2df68c/example/assets/favicon.png
--------------------------------------------------------------------------------
/example/assets/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/anhquan291/react-native-animated-number/102c52449f5a1078103a4da5ee138ec1ae2df68c/example/assets/icon.png
--------------------------------------------------------------------------------
/example/assets/splash-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/anhquan291/react-native-animated-number/102c52449f5a1078103a4da5ee138ec1ae2df68c/example/assets/splash-icon.png
--------------------------------------------------------------------------------
/example/babel.config.js:
--------------------------------------------------------------------------------
1 | module.exports = function (api) {
2 | api.cache(true);
3 | return {
4 | presets: ['babel-preset-expo'],
5 | };
6 | };
7 |
--------------------------------------------------------------------------------
/example/index.ts:
--------------------------------------------------------------------------------
1 | import { registerRootComponent } from 'expo';
2 |
3 | import App from './App';
4 |
5 | // registerRootComponent calls AppRegistry.registerComponent('main', () => App);
6 | // It also ensures that whether you load the app in Expo Go or in a native build,
7 | // the environment is set up appropriately
8 | registerRootComponent(App);
9 |
--------------------------------------------------------------------------------
/example/ios/.gitignore:
--------------------------------------------------------------------------------
1 | # OSX
2 | #
3 | .DS_Store
4 |
5 | # Xcode
6 | #
7 | build/
8 | *.pbxuser
9 | !default.pbxuser
10 | *.mode1v3
11 | !default.mode1v3
12 | *.mode2v3
13 | !default.mode2v3
14 | *.perspectivev3
15 | !default.perspectivev3
16 | xcuserdata
17 | *.xccheckout
18 | *.moved-aside
19 | DerivedData
20 | *.hmap
21 | *.ipa
22 | *.xcuserstate
23 | project.xcworkspace
24 | .xcode.env.local
25 |
26 | # Bundle artifacts
27 | *.jsbundle
28 |
29 | # CocoaPods
30 | /Pods/
31 |
--------------------------------------------------------------------------------
/example/ios/.xcode.env:
--------------------------------------------------------------------------------
1 | # This `.xcode.env` file is versioned and is used to source the environment
2 | # used when running script phases inside Xcode.
3 | # To customize your local environment, you can create an `.xcode.env.local`
4 | # file that is not versioned.
5 |
6 | # NODE_BINARY variable contains the PATH to the node executable.
7 | #
8 | # Customize the NODE_BINARY variable here.
9 | # For example, to use nvm with brew, add the following line
10 | # . "$(brew --prefix nvm)/nvm.sh" --no-use
11 | export NODE_BINARY=$(command -v node)
12 |
--------------------------------------------------------------------------------
/example/ios/Podfile:
--------------------------------------------------------------------------------
1 | require File.join(File.dirname(`node --print "require.resolve('expo/package.json')"`), "scripts/autolinking")
2 | require File.join(File.dirname(`node --print "require.resolve('react-native/package.json')"`), "scripts/react_native_pods")
3 |
4 | require 'json'
5 | podfile_properties = JSON.parse(File.read(File.join(__dir__, 'Podfile.properties.json'))) rescue {}
6 |
7 | ENV['RCT_NEW_ARCH_ENABLED'] = podfile_properties['newArchEnabled'] == 'true' ? '1' : '0'
8 | ENV['EX_DEV_CLIENT_NETWORK_INSPECTOR'] = podfile_properties['EX_DEV_CLIENT_NETWORK_INSPECTOR']
9 |
10 | platform :ios, podfile_properties['ios.deploymentTarget'] || '15.1'
11 | install! 'cocoapods',
12 | :deterministic_uuids => false
13 |
14 | prepare_react_native_project!
15 |
16 | target 'reactnativeanimatednumberexample' do
17 | use_expo_modules!
18 |
19 | if ENV['EXPO_USE_COMMUNITY_AUTOLINKING'] == '1'
20 | config_command = ['node', '-e', "process.argv=['', '', 'config'];require('@react-native-community/cli').run()"];
21 | else
22 | config_command = [
23 | 'node',
24 | '--no-warnings',
25 | '--eval',
26 | 'require(require.resolve(\'expo-modules-autolinking\', { paths: [require.resolve(\'expo/package.json\')] }))(process.argv.slice(1))',
27 | 'react-native-config',
28 | '--json',
29 | '--platform',
30 | 'ios'
31 | ]
32 | end
33 |
34 | config = use_native_modules!(config_command)
35 |
36 | use_frameworks! :linkage => podfile_properties['ios.useFrameworks'].to_sym if podfile_properties['ios.useFrameworks']
37 | use_frameworks! :linkage => ENV['USE_FRAMEWORKS'].to_sym if ENV['USE_FRAMEWORKS']
38 |
39 | use_react_native!(
40 | :path => config[:reactNativePath],
41 | :hermes_enabled => podfile_properties['expo.jsEngine'] == nil || podfile_properties['expo.jsEngine'] == 'hermes',
42 | # An absolute path to your application root.
43 | :app_path => "#{Pod::Config.instance.installation_root}/..",
44 | :privacy_file_aggregation_enabled => podfile_properties['apple.privacyManifestAggregationEnabled'] != 'false',
45 | )
46 |
47 | post_install do |installer|
48 | react_native_post_install(
49 | installer,
50 | config[:reactNativePath],
51 | :mac_catalyst_enabled => false,
52 | :ccache_enabled => podfile_properties['apple.ccacheEnabled'] == 'true',
53 | )
54 |
55 | # This is necessary for Xcode 14, because it signs resource bundles by default
56 | # when building for devices.
57 | installer.target_installation_results.pod_target_installation_results
58 | .each do |pod_name, target_installation_result|
59 | target_installation_result.resource_bundle_targets.each do |resource_bundle_target|
60 | resource_bundle_target.build_configurations.each do |config|
61 | config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
62 | end
63 | end
64 | end
65 | end
66 | end
67 |
--------------------------------------------------------------------------------
/example/ios/Podfile.lock:
--------------------------------------------------------------------------------
1 | PODS:
2 | - boost (1.84.0)
3 | - DoubleConversion (1.1.6)
4 | - EXConstants (17.0.4):
5 | - ExpoModulesCore
6 | - Expo (52.0.25):
7 | - ExpoModulesCore
8 | - ExpoAsset (11.0.2):
9 | - ExpoModulesCore
10 | - ExpoFileSystem (18.0.7):
11 | - ExpoModulesCore
12 | - ExpoFont (13.0.3):
13 | - ExpoModulesCore
14 | - ExpoKeepAwake (14.0.2):
15 | - ExpoModulesCore
16 | - ExpoModulesCore (2.1.3):
17 | - DoubleConversion
18 | - glog
19 | - hermes-engine
20 | - RCT-Folly (= 2024.01.01.00)
21 | - RCTRequired
22 | - RCTTypeSafety
23 | - React-Core
24 | - React-debug
25 | - React-Fabric
26 | - React-featureflags
27 | - React-graphics
28 | - React-ImageManager
29 | - React-jsinspector
30 | - React-NativeModulesApple
31 | - React-RCTAppDelegate
32 | - React-RCTFabric
33 | - React-rendererdebug
34 | - React-utils
35 | - ReactCodegen
36 | - ReactCommon/turbomodule/bridging
37 | - ReactCommon/turbomodule/core
38 | - Yoga
39 | - FBLazyVector (0.76.6)
40 | - fmt (9.1.0)
41 | - glog (0.3.5)
42 | - hermes-engine (0.76.6):
43 | - hermes-engine/Pre-built (= 0.76.6)
44 | - hermes-engine/Pre-built (0.76.6)
45 | - RCT-Folly (2024.01.01.00):
46 | - boost
47 | - DoubleConversion
48 | - fmt (= 9.1.0)
49 | - glog
50 | - RCT-Folly/Default (= 2024.01.01.00)
51 | - RCT-Folly/Default (2024.01.01.00):
52 | - boost
53 | - DoubleConversion
54 | - fmt (= 9.1.0)
55 | - glog
56 | - RCT-Folly/Fabric (2024.01.01.00):
57 | - boost
58 | - DoubleConversion
59 | - fmt (= 9.1.0)
60 | - glog
61 | - RCTDeprecation (0.76.6)
62 | - RCTRequired (0.76.6)
63 | - RCTTypeSafety (0.76.6):
64 | - FBLazyVector (= 0.76.6)
65 | - RCTRequired (= 0.76.6)
66 | - React-Core (= 0.76.6)
67 | - React (0.76.6):
68 | - React-Core (= 0.76.6)
69 | - React-Core/DevSupport (= 0.76.6)
70 | - React-Core/RCTWebSocket (= 0.76.6)
71 | - React-RCTActionSheet (= 0.76.6)
72 | - React-RCTAnimation (= 0.76.6)
73 | - React-RCTBlob (= 0.76.6)
74 | - React-RCTImage (= 0.76.6)
75 | - React-RCTLinking (= 0.76.6)
76 | - React-RCTNetwork (= 0.76.6)
77 | - React-RCTSettings (= 0.76.6)
78 | - React-RCTText (= 0.76.6)
79 | - React-RCTVibration (= 0.76.6)
80 | - React-callinvoker (0.76.6)
81 | - React-Core (0.76.6):
82 | - glog
83 | - hermes-engine
84 | - RCT-Folly (= 2024.01.01.00)
85 | - RCTDeprecation
86 | - React-Core/Default (= 0.76.6)
87 | - React-cxxreact
88 | - React-featureflags
89 | - React-hermes
90 | - React-jsi
91 | - React-jsiexecutor
92 | - React-jsinspector
93 | - React-perflogger
94 | - React-runtimescheduler
95 | - React-utils
96 | - SocketRocket (= 0.7.1)
97 | - Yoga
98 | - React-Core/CoreModulesHeaders (0.76.6):
99 | - glog
100 | - hermes-engine
101 | - RCT-Folly (= 2024.01.01.00)
102 | - RCTDeprecation
103 | - React-Core/Default
104 | - React-cxxreact
105 | - React-featureflags
106 | - React-hermes
107 | - React-jsi
108 | - React-jsiexecutor
109 | - React-jsinspector
110 | - React-perflogger
111 | - React-runtimescheduler
112 | - React-utils
113 | - SocketRocket (= 0.7.1)
114 | - Yoga
115 | - React-Core/Default (0.76.6):
116 | - glog
117 | - hermes-engine
118 | - RCT-Folly (= 2024.01.01.00)
119 | - RCTDeprecation
120 | - React-cxxreact
121 | - React-featureflags
122 | - React-hermes
123 | - React-jsi
124 | - React-jsiexecutor
125 | - React-jsinspector
126 | - React-perflogger
127 | - React-runtimescheduler
128 | - React-utils
129 | - SocketRocket (= 0.7.1)
130 | - Yoga
131 | - React-Core/DevSupport (0.76.6):
132 | - glog
133 | - hermes-engine
134 | - RCT-Folly (= 2024.01.01.00)
135 | - RCTDeprecation
136 | - React-Core/Default (= 0.76.6)
137 | - React-Core/RCTWebSocket (= 0.76.6)
138 | - React-cxxreact
139 | - React-featureflags
140 | - React-hermes
141 | - React-jsi
142 | - React-jsiexecutor
143 | - React-jsinspector
144 | - React-perflogger
145 | - React-runtimescheduler
146 | - React-utils
147 | - SocketRocket (= 0.7.1)
148 | - Yoga
149 | - React-Core/RCTActionSheetHeaders (0.76.6):
150 | - glog
151 | - hermes-engine
152 | - RCT-Folly (= 2024.01.01.00)
153 | - RCTDeprecation
154 | - React-Core/Default
155 | - React-cxxreact
156 | - React-featureflags
157 | - React-hermes
158 | - React-jsi
159 | - React-jsiexecutor
160 | - React-jsinspector
161 | - React-perflogger
162 | - React-runtimescheduler
163 | - React-utils
164 | - SocketRocket (= 0.7.1)
165 | - Yoga
166 | - React-Core/RCTAnimationHeaders (0.76.6):
167 | - glog
168 | - hermes-engine
169 | - RCT-Folly (= 2024.01.01.00)
170 | - RCTDeprecation
171 | - React-Core/Default
172 | - React-cxxreact
173 | - React-featureflags
174 | - React-hermes
175 | - React-jsi
176 | - React-jsiexecutor
177 | - React-jsinspector
178 | - React-perflogger
179 | - React-runtimescheduler
180 | - React-utils
181 | - SocketRocket (= 0.7.1)
182 | - Yoga
183 | - React-Core/RCTBlobHeaders (0.76.6):
184 | - glog
185 | - hermes-engine
186 | - RCT-Folly (= 2024.01.01.00)
187 | - RCTDeprecation
188 | - React-Core/Default
189 | - React-cxxreact
190 | - React-featureflags
191 | - React-hermes
192 | - React-jsi
193 | - React-jsiexecutor
194 | - React-jsinspector
195 | - React-perflogger
196 | - React-runtimescheduler
197 | - React-utils
198 | - SocketRocket (= 0.7.1)
199 | - Yoga
200 | - React-Core/RCTImageHeaders (0.76.6):
201 | - glog
202 | - hermes-engine
203 | - RCT-Folly (= 2024.01.01.00)
204 | - RCTDeprecation
205 | - React-Core/Default
206 | - React-cxxreact
207 | - React-featureflags
208 | - React-hermes
209 | - React-jsi
210 | - React-jsiexecutor
211 | - React-jsinspector
212 | - React-perflogger
213 | - React-runtimescheduler
214 | - React-utils
215 | - SocketRocket (= 0.7.1)
216 | - Yoga
217 | - React-Core/RCTLinkingHeaders (0.76.6):
218 | - glog
219 | - hermes-engine
220 | - RCT-Folly (= 2024.01.01.00)
221 | - RCTDeprecation
222 | - React-Core/Default
223 | - React-cxxreact
224 | - React-featureflags
225 | - React-hermes
226 | - React-jsi
227 | - React-jsiexecutor
228 | - React-jsinspector
229 | - React-perflogger
230 | - React-runtimescheduler
231 | - React-utils
232 | - SocketRocket (= 0.7.1)
233 | - Yoga
234 | - React-Core/RCTNetworkHeaders (0.76.6):
235 | - glog
236 | - hermes-engine
237 | - RCT-Folly (= 2024.01.01.00)
238 | - RCTDeprecation
239 | - React-Core/Default
240 | - React-cxxreact
241 | - React-featureflags
242 | - React-hermes
243 | - React-jsi
244 | - React-jsiexecutor
245 | - React-jsinspector
246 | - React-perflogger
247 | - React-runtimescheduler
248 | - React-utils
249 | - SocketRocket (= 0.7.1)
250 | - Yoga
251 | - React-Core/RCTSettingsHeaders (0.76.6):
252 | - glog
253 | - hermes-engine
254 | - RCT-Folly (= 2024.01.01.00)
255 | - RCTDeprecation
256 | - React-Core/Default
257 | - React-cxxreact
258 | - React-featureflags
259 | - React-hermes
260 | - React-jsi
261 | - React-jsiexecutor
262 | - React-jsinspector
263 | - React-perflogger
264 | - React-runtimescheduler
265 | - React-utils
266 | - SocketRocket (= 0.7.1)
267 | - Yoga
268 | - React-Core/RCTTextHeaders (0.76.6):
269 | - glog
270 | - hermes-engine
271 | - RCT-Folly (= 2024.01.01.00)
272 | - RCTDeprecation
273 | - React-Core/Default
274 | - React-cxxreact
275 | - React-featureflags
276 | - React-hermes
277 | - React-jsi
278 | - React-jsiexecutor
279 | - React-jsinspector
280 | - React-perflogger
281 | - React-runtimescheduler
282 | - React-utils
283 | - SocketRocket (= 0.7.1)
284 | - Yoga
285 | - React-Core/RCTVibrationHeaders (0.76.6):
286 | - glog
287 | - hermes-engine
288 | - RCT-Folly (= 2024.01.01.00)
289 | - RCTDeprecation
290 | - React-Core/Default
291 | - React-cxxreact
292 | - React-featureflags
293 | - React-hermes
294 | - React-jsi
295 | - React-jsiexecutor
296 | - React-jsinspector
297 | - React-perflogger
298 | - React-runtimescheduler
299 | - React-utils
300 | - SocketRocket (= 0.7.1)
301 | - Yoga
302 | - React-Core/RCTWebSocket (0.76.6):
303 | - glog
304 | - hermes-engine
305 | - RCT-Folly (= 2024.01.01.00)
306 | - RCTDeprecation
307 | - React-Core/Default (= 0.76.6)
308 | - React-cxxreact
309 | - React-featureflags
310 | - React-hermes
311 | - React-jsi
312 | - React-jsiexecutor
313 | - React-jsinspector
314 | - React-perflogger
315 | - React-runtimescheduler
316 | - React-utils
317 | - SocketRocket (= 0.7.1)
318 | - Yoga
319 | - React-CoreModules (0.76.6):
320 | - DoubleConversion
321 | - fmt (= 9.1.0)
322 | - RCT-Folly (= 2024.01.01.00)
323 | - RCTTypeSafety (= 0.76.6)
324 | - React-Core/CoreModulesHeaders (= 0.76.6)
325 | - React-jsi (= 0.76.6)
326 | - React-jsinspector
327 | - React-NativeModulesApple
328 | - React-RCTBlob
329 | - React-RCTImage (= 0.76.6)
330 | - ReactCodegen
331 | - ReactCommon
332 | - SocketRocket (= 0.7.1)
333 | - React-cxxreact (0.76.6):
334 | - boost
335 | - DoubleConversion
336 | - fmt (= 9.1.0)
337 | - glog
338 | - hermes-engine
339 | - RCT-Folly (= 2024.01.01.00)
340 | - React-callinvoker (= 0.76.6)
341 | - React-debug (= 0.76.6)
342 | - React-jsi (= 0.76.6)
343 | - React-jsinspector
344 | - React-logger (= 0.76.6)
345 | - React-perflogger (= 0.76.6)
346 | - React-runtimeexecutor (= 0.76.6)
347 | - React-timing (= 0.76.6)
348 | - React-debug (0.76.6)
349 | - React-defaultsnativemodule (0.76.6):
350 | - DoubleConversion
351 | - glog
352 | - hermes-engine
353 | - RCT-Folly (= 2024.01.01.00)
354 | - RCTRequired
355 | - RCTTypeSafety
356 | - React-Core
357 | - React-debug
358 | - React-domnativemodule
359 | - React-Fabric
360 | - React-featureflags
361 | - React-featureflagsnativemodule
362 | - React-graphics
363 | - React-idlecallbacksnativemodule
364 | - React-ImageManager
365 | - React-microtasksnativemodule
366 | - React-NativeModulesApple
367 | - React-RCTFabric
368 | - React-rendererdebug
369 | - React-utils
370 | - ReactCodegen
371 | - ReactCommon/turbomodule/bridging
372 | - ReactCommon/turbomodule/core
373 | - Yoga
374 | - React-domnativemodule (0.76.6):
375 | - DoubleConversion
376 | - glog
377 | - hermes-engine
378 | - RCT-Folly (= 2024.01.01.00)
379 | - RCTRequired
380 | - RCTTypeSafety
381 | - React-Core
382 | - React-debug
383 | - React-Fabric
384 | - React-FabricComponents
385 | - React-featureflags
386 | - React-graphics
387 | - React-ImageManager
388 | - React-NativeModulesApple
389 | - React-RCTFabric
390 | - React-rendererdebug
391 | - React-utils
392 | - ReactCodegen
393 | - ReactCommon/turbomodule/bridging
394 | - ReactCommon/turbomodule/core
395 | - Yoga
396 | - React-Fabric (0.76.6):
397 | - DoubleConversion
398 | - fmt (= 9.1.0)
399 | - glog
400 | - hermes-engine
401 | - RCT-Folly/Fabric (= 2024.01.01.00)
402 | - RCTRequired
403 | - RCTTypeSafety
404 | - React-Core
405 | - React-cxxreact
406 | - React-debug
407 | - React-Fabric/animations (= 0.76.6)
408 | - React-Fabric/attributedstring (= 0.76.6)
409 | - React-Fabric/componentregistry (= 0.76.6)
410 | - React-Fabric/componentregistrynative (= 0.76.6)
411 | - React-Fabric/components (= 0.76.6)
412 | - React-Fabric/core (= 0.76.6)
413 | - React-Fabric/dom (= 0.76.6)
414 | - React-Fabric/imagemanager (= 0.76.6)
415 | - React-Fabric/leakchecker (= 0.76.6)
416 | - React-Fabric/mounting (= 0.76.6)
417 | - React-Fabric/observers (= 0.76.6)
418 | - React-Fabric/scheduler (= 0.76.6)
419 | - React-Fabric/telemetry (= 0.76.6)
420 | - React-Fabric/templateprocessor (= 0.76.6)
421 | - React-Fabric/uimanager (= 0.76.6)
422 | - React-featureflags
423 | - React-graphics
424 | - React-jsi
425 | - React-jsiexecutor
426 | - React-logger
427 | - React-rendererdebug
428 | - React-runtimescheduler
429 | - React-utils
430 | - ReactCommon/turbomodule/core
431 | - React-Fabric/animations (0.76.6):
432 | - DoubleConversion
433 | - fmt (= 9.1.0)
434 | - glog
435 | - hermes-engine
436 | - RCT-Folly/Fabric (= 2024.01.01.00)
437 | - RCTRequired
438 | - RCTTypeSafety
439 | - React-Core
440 | - React-cxxreact
441 | - React-debug
442 | - React-featureflags
443 | - React-graphics
444 | - React-jsi
445 | - React-jsiexecutor
446 | - React-logger
447 | - React-rendererdebug
448 | - React-runtimescheduler
449 | - React-utils
450 | - ReactCommon/turbomodule/core
451 | - React-Fabric/attributedstring (0.76.6):
452 | - DoubleConversion
453 | - fmt (= 9.1.0)
454 | - glog
455 | - hermes-engine
456 | - RCT-Folly/Fabric (= 2024.01.01.00)
457 | - RCTRequired
458 | - RCTTypeSafety
459 | - React-Core
460 | - React-cxxreact
461 | - React-debug
462 | - React-featureflags
463 | - React-graphics
464 | - React-jsi
465 | - React-jsiexecutor
466 | - React-logger
467 | - React-rendererdebug
468 | - React-runtimescheduler
469 | - React-utils
470 | - ReactCommon/turbomodule/core
471 | - React-Fabric/componentregistry (0.76.6):
472 | - DoubleConversion
473 | - fmt (= 9.1.0)
474 | - glog
475 | - hermes-engine
476 | - RCT-Folly/Fabric (= 2024.01.01.00)
477 | - RCTRequired
478 | - RCTTypeSafety
479 | - React-Core
480 | - React-cxxreact
481 | - React-debug
482 | - React-featureflags
483 | - React-graphics
484 | - React-jsi
485 | - React-jsiexecutor
486 | - React-logger
487 | - React-rendererdebug
488 | - React-runtimescheduler
489 | - React-utils
490 | - ReactCommon/turbomodule/core
491 | - React-Fabric/componentregistrynative (0.76.6):
492 | - DoubleConversion
493 | - fmt (= 9.1.0)
494 | - glog
495 | - hermes-engine
496 | - RCT-Folly/Fabric (= 2024.01.01.00)
497 | - RCTRequired
498 | - RCTTypeSafety
499 | - React-Core
500 | - React-cxxreact
501 | - React-debug
502 | - React-featureflags
503 | - React-graphics
504 | - React-jsi
505 | - React-jsiexecutor
506 | - React-logger
507 | - React-rendererdebug
508 | - React-runtimescheduler
509 | - React-utils
510 | - ReactCommon/turbomodule/core
511 | - React-Fabric/components (0.76.6):
512 | - DoubleConversion
513 | - fmt (= 9.1.0)
514 | - glog
515 | - hermes-engine
516 | - RCT-Folly/Fabric (= 2024.01.01.00)
517 | - RCTRequired
518 | - RCTTypeSafety
519 | - React-Core
520 | - React-cxxreact
521 | - React-debug
522 | - React-Fabric/components/legacyviewmanagerinterop (= 0.76.6)
523 | - React-Fabric/components/root (= 0.76.6)
524 | - React-Fabric/components/view (= 0.76.6)
525 | - React-featureflags
526 | - React-graphics
527 | - React-jsi
528 | - React-jsiexecutor
529 | - React-logger
530 | - React-rendererdebug
531 | - React-runtimescheduler
532 | - React-utils
533 | - ReactCommon/turbomodule/core
534 | - React-Fabric/components/legacyviewmanagerinterop (0.76.6):
535 | - DoubleConversion
536 | - fmt (= 9.1.0)
537 | - glog
538 | - hermes-engine
539 | - RCT-Folly/Fabric (= 2024.01.01.00)
540 | - RCTRequired
541 | - RCTTypeSafety
542 | - React-Core
543 | - React-cxxreact
544 | - React-debug
545 | - React-featureflags
546 | - React-graphics
547 | - React-jsi
548 | - React-jsiexecutor
549 | - React-logger
550 | - React-rendererdebug
551 | - React-runtimescheduler
552 | - React-utils
553 | - ReactCommon/turbomodule/core
554 | - React-Fabric/components/root (0.76.6):
555 | - DoubleConversion
556 | - fmt (= 9.1.0)
557 | - glog
558 | - hermes-engine
559 | - RCT-Folly/Fabric (= 2024.01.01.00)
560 | - RCTRequired
561 | - RCTTypeSafety
562 | - React-Core
563 | - React-cxxreact
564 | - React-debug
565 | - React-featureflags
566 | - React-graphics
567 | - React-jsi
568 | - React-jsiexecutor
569 | - React-logger
570 | - React-rendererdebug
571 | - React-runtimescheduler
572 | - React-utils
573 | - ReactCommon/turbomodule/core
574 | - React-Fabric/components/view (0.76.6):
575 | - DoubleConversion
576 | - fmt (= 9.1.0)
577 | - glog
578 | - hermes-engine
579 | - RCT-Folly/Fabric (= 2024.01.01.00)
580 | - RCTRequired
581 | - RCTTypeSafety
582 | - React-Core
583 | - React-cxxreact
584 | - React-debug
585 | - React-featureflags
586 | - React-graphics
587 | - React-jsi
588 | - React-jsiexecutor
589 | - React-logger
590 | - React-rendererdebug
591 | - React-runtimescheduler
592 | - React-utils
593 | - ReactCommon/turbomodule/core
594 | - Yoga
595 | - React-Fabric/core (0.76.6):
596 | - DoubleConversion
597 | - fmt (= 9.1.0)
598 | - glog
599 | - hermes-engine
600 | - RCT-Folly/Fabric (= 2024.01.01.00)
601 | - RCTRequired
602 | - RCTTypeSafety
603 | - React-Core
604 | - React-cxxreact
605 | - React-debug
606 | - React-featureflags
607 | - React-graphics
608 | - React-jsi
609 | - React-jsiexecutor
610 | - React-logger
611 | - React-rendererdebug
612 | - React-runtimescheduler
613 | - React-utils
614 | - ReactCommon/turbomodule/core
615 | - React-Fabric/dom (0.76.6):
616 | - DoubleConversion
617 | - fmt (= 9.1.0)
618 | - glog
619 | - hermes-engine
620 | - RCT-Folly/Fabric (= 2024.01.01.00)
621 | - RCTRequired
622 | - RCTTypeSafety
623 | - React-Core
624 | - React-cxxreact
625 | - React-debug
626 | - React-featureflags
627 | - React-graphics
628 | - React-jsi
629 | - React-jsiexecutor
630 | - React-logger
631 | - React-rendererdebug
632 | - React-runtimescheduler
633 | - React-utils
634 | - ReactCommon/turbomodule/core
635 | - React-Fabric/imagemanager (0.76.6):
636 | - DoubleConversion
637 | - fmt (= 9.1.0)
638 | - glog
639 | - hermes-engine
640 | - RCT-Folly/Fabric (= 2024.01.01.00)
641 | - RCTRequired
642 | - RCTTypeSafety
643 | - React-Core
644 | - React-cxxreact
645 | - React-debug
646 | - React-featureflags
647 | - React-graphics
648 | - React-jsi
649 | - React-jsiexecutor
650 | - React-logger
651 | - React-rendererdebug
652 | - React-runtimescheduler
653 | - React-utils
654 | - ReactCommon/turbomodule/core
655 | - React-Fabric/leakchecker (0.76.6):
656 | - DoubleConversion
657 | - fmt (= 9.1.0)
658 | - glog
659 | - hermes-engine
660 | - RCT-Folly/Fabric (= 2024.01.01.00)
661 | - RCTRequired
662 | - RCTTypeSafety
663 | - React-Core
664 | - React-cxxreact
665 | - React-debug
666 | - React-featureflags
667 | - React-graphics
668 | - React-jsi
669 | - React-jsiexecutor
670 | - React-logger
671 | - React-rendererdebug
672 | - React-runtimescheduler
673 | - React-utils
674 | - ReactCommon/turbomodule/core
675 | - React-Fabric/mounting (0.76.6):
676 | - DoubleConversion
677 | - fmt (= 9.1.0)
678 | - glog
679 | - hermes-engine
680 | - RCT-Folly/Fabric (= 2024.01.01.00)
681 | - RCTRequired
682 | - RCTTypeSafety
683 | - React-Core
684 | - React-cxxreact
685 | - React-debug
686 | - React-featureflags
687 | - React-graphics
688 | - React-jsi
689 | - React-jsiexecutor
690 | - React-logger
691 | - React-rendererdebug
692 | - React-runtimescheduler
693 | - React-utils
694 | - ReactCommon/turbomodule/core
695 | - React-Fabric/observers (0.76.6):
696 | - DoubleConversion
697 | - fmt (= 9.1.0)
698 | - glog
699 | - hermes-engine
700 | - RCT-Folly/Fabric (= 2024.01.01.00)
701 | - RCTRequired
702 | - RCTTypeSafety
703 | - React-Core
704 | - React-cxxreact
705 | - React-debug
706 | - React-Fabric/observers/events (= 0.76.6)
707 | - React-featureflags
708 | - React-graphics
709 | - React-jsi
710 | - React-jsiexecutor
711 | - React-logger
712 | - React-rendererdebug
713 | - React-runtimescheduler
714 | - React-utils
715 | - ReactCommon/turbomodule/core
716 | - React-Fabric/observers/events (0.76.6):
717 | - DoubleConversion
718 | - fmt (= 9.1.0)
719 | - glog
720 | - hermes-engine
721 | - RCT-Folly/Fabric (= 2024.01.01.00)
722 | - RCTRequired
723 | - RCTTypeSafety
724 | - React-Core
725 | - React-cxxreact
726 | - React-debug
727 | - React-featureflags
728 | - React-graphics
729 | - React-jsi
730 | - React-jsiexecutor
731 | - React-logger
732 | - React-rendererdebug
733 | - React-runtimescheduler
734 | - React-utils
735 | - ReactCommon/turbomodule/core
736 | - React-Fabric/scheduler (0.76.6):
737 | - DoubleConversion
738 | - fmt (= 9.1.0)
739 | - glog
740 | - hermes-engine
741 | - RCT-Folly/Fabric (= 2024.01.01.00)
742 | - RCTRequired
743 | - RCTTypeSafety
744 | - React-Core
745 | - React-cxxreact
746 | - React-debug
747 | - React-Fabric/observers/events
748 | - React-featureflags
749 | - React-graphics
750 | - React-jsi
751 | - React-jsiexecutor
752 | - React-logger
753 | - React-performancetimeline
754 | - React-rendererdebug
755 | - React-runtimescheduler
756 | - React-utils
757 | - ReactCommon/turbomodule/core
758 | - React-Fabric/telemetry (0.76.6):
759 | - DoubleConversion
760 | - fmt (= 9.1.0)
761 | - glog
762 | - hermes-engine
763 | - RCT-Folly/Fabric (= 2024.01.01.00)
764 | - RCTRequired
765 | - RCTTypeSafety
766 | - React-Core
767 | - React-cxxreact
768 | - React-debug
769 | - React-featureflags
770 | - React-graphics
771 | - React-jsi
772 | - React-jsiexecutor
773 | - React-logger
774 | - React-rendererdebug
775 | - React-runtimescheduler
776 | - React-utils
777 | - ReactCommon/turbomodule/core
778 | - React-Fabric/templateprocessor (0.76.6):
779 | - DoubleConversion
780 | - fmt (= 9.1.0)
781 | - glog
782 | - hermes-engine
783 | - RCT-Folly/Fabric (= 2024.01.01.00)
784 | - RCTRequired
785 | - RCTTypeSafety
786 | - React-Core
787 | - React-cxxreact
788 | - React-debug
789 | - React-featureflags
790 | - React-graphics
791 | - React-jsi
792 | - React-jsiexecutor
793 | - React-logger
794 | - React-rendererdebug
795 | - React-runtimescheduler
796 | - React-utils
797 | - ReactCommon/turbomodule/core
798 | - React-Fabric/uimanager (0.76.6):
799 | - DoubleConversion
800 | - fmt (= 9.1.0)
801 | - glog
802 | - hermes-engine
803 | - RCT-Folly/Fabric (= 2024.01.01.00)
804 | - RCTRequired
805 | - RCTTypeSafety
806 | - React-Core
807 | - React-cxxreact
808 | - React-debug
809 | - React-Fabric/uimanager/consistency (= 0.76.6)
810 | - React-featureflags
811 | - React-graphics
812 | - React-jsi
813 | - React-jsiexecutor
814 | - React-logger
815 | - React-rendererconsistency
816 | - React-rendererdebug
817 | - React-runtimescheduler
818 | - React-utils
819 | - ReactCommon/turbomodule/core
820 | - React-Fabric/uimanager/consistency (0.76.6):
821 | - DoubleConversion
822 | - fmt (= 9.1.0)
823 | - glog
824 | - hermes-engine
825 | - RCT-Folly/Fabric (= 2024.01.01.00)
826 | - RCTRequired
827 | - RCTTypeSafety
828 | - React-Core
829 | - React-cxxreact
830 | - React-debug
831 | - React-featureflags
832 | - React-graphics
833 | - React-jsi
834 | - React-jsiexecutor
835 | - React-logger
836 | - React-rendererconsistency
837 | - React-rendererdebug
838 | - React-runtimescheduler
839 | - React-utils
840 | - ReactCommon/turbomodule/core
841 | - React-FabricComponents (0.76.6):
842 | - DoubleConversion
843 | - fmt (= 9.1.0)
844 | - glog
845 | - hermes-engine
846 | - RCT-Folly/Fabric (= 2024.01.01.00)
847 | - RCTRequired
848 | - RCTTypeSafety
849 | - React-Core
850 | - React-cxxreact
851 | - React-debug
852 | - React-Fabric
853 | - React-FabricComponents/components (= 0.76.6)
854 | - React-FabricComponents/textlayoutmanager (= 0.76.6)
855 | - React-featureflags
856 | - React-graphics
857 | - React-jsi
858 | - React-jsiexecutor
859 | - React-logger
860 | - React-rendererdebug
861 | - React-runtimescheduler
862 | - React-utils
863 | - ReactCodegen
864 | - ReactCommon/turbomodule/core
865 | - Yoga
866 | - React-FabricComponents/components (0.76.6):
867 | - DoubleConversion
868 | - fmt (= 9.1.0)
869 | - glog
870 | - hermes-engine
871 | - RCT-Folly/Fabric (= 2024.01.01.00)
872 | - RCTRequired
873 | - RCTTypeSafety
874 | - React-Core
875 | - React-cxxreact
876 | - React-debug
877 | - React-Fabric
878 | - React-FabricComponents/components/inputaccessory (= 0.76.6)
879 | - React-FabricComponents/components/iostextinput (= 0.76.6)
880 | - React-FabricComponents/components/modal (= 0.76.6)
881 | - React-FabricComponents/components/rncore (= 0.76.6)
882 | - React-FabricComponents/components/safeareaview (= 0.76.6)
883 | - React-FabricComponents/components/scrollview (= 0.76.6)
884 | - React-FabricComponents/components/text (= 0.76.6)
885 | - React-FabricComponents/components/textinput (= 0.76.6)
886 | - React-FabricComponents/components/unimplementedview (= 0.76.6)
887 | - React-featureflags
888 | - React-graphics
889 | - React-jsi
890 | - React-jsiexecutor
891 | - React-logger
892 | - React-rendererdebug
893 | - React-runtimescheduler
894 | - React-utils
895 | - ReactCodegen
896 | - ReactCommon/turbomodule/core
897 | - Yoga
898 | - React-FabricComponents/components/inputaccessory (0.76.6):
899 | - DoubleConversion
900 | - fmt (= 9.1.0)
901 | - glog
902 | - hermes-engine
903 | - RCT-Folly/Fabric (= 2024.01.01.00)
904 | - RCTRequired
905 | - RCTTypeSafety
906 | - React-Core
907 | - React-cxxreact
908 | - React-debug
909 | - React-Fabric
910 | - React-featureflags
911 | - React-graphics
912 | - React-jsi
913 | - React-jsiexecutor
914 | - React-logger
915 | - React-rendererdebug
916 | - React-runtimescheduler
917 | - React-utils
918 | - ReactCodegen
919 | - ReactCommon/turbomodule/core
920 | - Yoga
921 | - React-FabricComponents/components/iostextinput (0.76.6):
922 | - DoubleConversion
923 | - fmt (= 9.1.0)
924 | - glog
925 | - hermes-engine
926 | - RCT-Folly/Fabric (= 2024.01.01.00)
927 | - RCTRequired
928 | - RCTTypeSafety
929 | - React-Core
930 | - React-cxxreact
931 | - React-debug
932 | - React-Fabric
933 | - React-featureflags
934 | - React-graphics
935 | - React-jsi
936 | - React-jsiexecutor
937 | - React-logger
938 | - React-rendererdebug
939 | - React-runtimescheduler
940 | - React-utils
941 | - ReactCodegen
942 | - ReactCommon/turbomodule/core
943 | - Yoga
944 | - React-FabricComponents/components/modal (0.76.6):
945 | - DoubleConversion
946 | - fmt (= 9.1.0)
947 | - glog
948 | - hermes-engine
949 | - RCT-Folly/Fabric (= 2024.01.01.00)
950 | - RCTRequired
951 | - RCTTypeSafety
952 | - React-Core
953 | - React-cxxreact
954 | - React-debug
955 | - React-Fabric
956 | - React-featureflags
957 | - React-graphics
958 | - React-jsi
959 | - React-jsiexecutor
960 | - React-logger
961 | - React-rendererdebug
962 | - React-runtimescheduler
963 | - React-utils
964 | - ReactCodegen
965 | - ReactCommon/turbomodule/core
966 | - Yoga
967 | - React-FabricComponents/components/rncore (0.76.6):
968 | - DoubleConversion
969 | - fmt (= 9.1.0)
970 | - glog
971 | - hermes-engine
972 | - RCT-Folly/Fabric (= 2024.01.01.00)
973 | - RCTRequired
974 | - RCTTypeSafety
975 | - React-Core
976 | - React-cxxreact
977 | - React-debug
978 | - React-Fabric
979 | - React-featureflags
980 | - React-graphics
981 | - React-jsi
982 | - React-jsiexecutor
983 | - React-logger
984 | - React-rendererdebug
985 | - React-runtimescheduler
986 | - React-utils
987 | - ReactCodegen
988 | - ReactCommon/turbomodule/core
989 | - Yoga
990 | - React-FabricComponents/components/safeareaview (0.76.6):
991 | - DoubleConversion
992 | - fmt (= 9.1.0)
993 | - glog
994 | - hermes-engine
995 | - RCT-Folly/Fabric (= 2024.01.01.00)
996 | - RCTRequired
997 | - RCTTypeSafety
998 | - React-Core
999 | - React-cxxreact
1000 | - React-debug
1001 | - React-Fabric
1002 | - React-featureflags
1003 | - React-graphics
1004 | - React-jsi
1005 | - React-jsiexecutor
1006 | - React-logger
1007 | - React-rendererdebug
1008 | - React-runtimescheduler
1009 | - React-utils
1010 | - ReactCodegen
1011 | - ReactCommon/turbomodule/core
1012 | - Yoga
1013 | - React-FabricComponents/components/scrollview (0.76.6):
1014 | - DoubleConversion
1015 | - fmt (= 9.1.0)
1016 | - glog
1017 | - hermes-engine
1018 | - RCT-Folly/Fabric (= 2024.01.01.00)
1019 | - RCTRequired
1020 | - RCTTypeSafety
1021 | - React-Core
1022 | - React-cxxreact
1023 | - React-debug
1024 | - React-Fabric
1025 | - React-featureflags
1026 | - React-graphics
1027 | - React-jsi
1028 | - React-jsiexecutor
1029 | - React-logger
1030 | - React-rendererdebug
1031 | - React-runtimescheduler
1032 | - React-utils
1033 | - ReactCodegen
1034 | - ReactCommon/turbomodule/core
1035 | - Yoga
1036 | - React-FabricComponents/components/text (0.76.6):
1037 | - DoubleConversion
1038 | - fmt (= 9.1.0)
1039 | - glog
1040 | - hermes-engine
1041 | - RCT-Folly/Fabric (= 2024.01.01.00)
1042 | - RCTRequired
1043 | - RCTTypeSafety
1044 | - React-Core
1045 | - React-cxxreact
1046 | - React-debug
1047 | - React-Fabric
1048 | - React-featureflags
1049 | - React-graphics
1050 | - React-jsi
1051 | - React-jsiexecutor
1052 | - React-logger
1053 | - React-rendererdebug
1054 | - React-runtimescheduler
1055 | - React-utils
1056 | - ReactCodegen
1057 | - ReactCommon/turbomodule/core
1058 | - Yoga
1059 | - React-FabricComponents/components/textinput (0.76.6):
1060 | - DoubleConversion
1061 | - fmt (= 9.1.0)
1062 | - glog
1063 | - hermes-engine
1064 | - RCT-Folly/Fabric (= 2024.01.01.00)
1065 | - RCTRequired
1066 | - RCTTypeSafety
1067 | - React-Core
1068 | - React-cxxreact
1069 | - React-debug
1070 | - React-Fabric
1071 | - React-featureflags
1072 | - React-graphics
1073 | - React-jsi
1074 | - React-jsiexecutor
1075 | - React-logger
1076 | - React-rendererdebug
1077 | - React-runtimescheduler
1078 | - React-utils
1079 | - ReactCodegen
1080 | - ReactCommon/turbomodule/core
1081 | - Yoga
1082 | - React-FabricComponents/components/unimplementedview (0.76.6):
1083 | - DoubleConversion
1084 | - fmt (= 9.1.0)
1085 | - glog
1086 | - hermes-engine
1087 | - RCT-Folly/Fabric (= 2024.01.01.00)
1088 | - RCTRequired
1089 | - RCTTypeSafety
1090 | - React-Core
1091 | - React-cxxreact
1092 | - React-debug
1093 | - React-Fabric
1094 | - React-featureflags
1095 | - React-graphics
1096 | - React-jsi
1097 | - React-jsiexecutor
1098 | - React-logger
1099 | - React-rendererdebug
1100 | - React-runtimescheduler
1101 | - React-utils
1102 | - ReactCodegen
1103 | - ReactCommon/turbomodule/core
1104 | - Yoga
1105 | - React-FabricComponents/textlayoutmanager (0.76.6):
1106 | - DoubleConversion
1107 | - fmt (= 9.1.0)
1108 | - glog
1109 | - hermes-engine
1110 | - RCT-Folly/Fabric (= 2024.01.01.00)
1111 | - RCTRequired
1112 | - RCTTypeSafety
1113 | - React-Core
1114 | - React-cxxreact
1115 | - React-debug
1116 | - React-Fabric
1117 | - React-featureflags
1118 | - React-graphics
1119 | - React-jsi
1120 | - React-jsiexecutor
1121 | - React-logger
1122 | - React-rendererdebug
1123 | - React-runtimescheduler
1124 | - React-utils
1125 | - ReactCodegen
1126 | - ReactCommon/turbomodule/core
1127 | - Yoga
1128 | - React-FabricImage (0.76.6):
1129 | - DoubleConversion
1130 | - fmt (= 9.1.0)
1131 | - glog
1132 | - hermes-engine
1133 | - RCT-Folly/Fabric (= 2024.01.01.00)
1134 | - RCTRequired (= 0.76.6)
1135 | - RCTTypeSafety (= 0.76.6)
1136 | - React-Fabric
1137 | - React-graphics
1138 | - React-ImageManager
1139 | - React-jsi
1140 | - React-jsiexecutor (= 0.76.6)
1141 | - React-logger
1142 | - React-rendererdebug
1143 | - React-utils
1144 | - ReactCommon
1145 | - Yoga
1146 | - React-featureflags (0.76.6)
1147 | - React-featureflagsnativemodule (0.76.6):
1148 | - DoubleConversion
1149 | - glog
1150 | - hermes-engine
1151 | - RCT-Folly (= 2024.01.01.00)
1152 | - RCTRequired
1153 | - RCTTypeSafety
1154 | - React-Core
1155 | - React-debug
1156 | - React-Fabric
1157 | - React-featureflags
1158 | - React-graphics
1159 | - React-ImageManager
1160 | - React-NativeModulesApple
1161 | - React-RCTFabric
1162 | - React-rendererdebug
1163 | - React-utils
1164 | - ReactCodegen
1165 | - ReactCommon/turbomodule/bridging
1166 | - ReactCommon/turbomodule/core
1167 | - Yoga
1168 | - React-graphics (0.76.6):
1169 | - DoubleConversion
1170 | - fmt (= 9.1.0)
1171 | - glog
1172 | - RCT-Folly/Fabric (= 2024.01.01.00)
1173 | - React-jsi
1174 | - React-jsiexecutor
1175 | - React-utils
1176 | - React-hermes (0.76.6):
1177 | - DoubleConversion
1178 | - fmt (= 9.1.0)
1179 | - glog
1180 | - hermes-engine
1181 | - RCT-Folly (= 2024.01.01.00)
1182 | - React-cxxreact (= 0.76.6)
1183 | - React-jsi
1184 | - React-jsiexecutor (= 0.76.6)
1185 | - React-jsinspector
1186 | - React-perflogger (= 0.76.6)
1187 | - React-runtimeexecutor
1188 | - React-idlecallbacksnativemodule (0.76.6):
1189 | - DoubleConversion
1190 | - glog
1191 | - hermes-engine
1192 | - RCT-Folly (= 2024.01.01.00)
1193 | - RCTRequired
1194 | - RCTTypeSafety
1195 | - React-Core
1196 | - React-debug
1197 | - React-Fabric
1198 | - React-featureflags
1199 | - React-graphics
1200 | - React-ImageManager
1201 | - React-NativeModulesApple
1202 | - React-RCTFabric
1203 | - React-rendererdebug
1204 | - React-runtimescheduler
1205 | - React-utils
1206 | - ReactCodegen
1207 | - ReactCommon/turbomodule/bridging
1208 | - ReactCommon/turbomodule/core
1209 | - Yoga
1210 | - React-ImageManager (0.76.6):
1211 | - glog
1212 | - RCT-Folly/Fabric
1213 | - React-Core/Default
1214 | - React-debug
1215 | - React-Fabric
1216 | - React-graphics
1217 | - React-rendererdebug
1218 | - React-utils
1219 | - React-jserrorhandler (0.76.6):
1220 | - glog
1221 | - hermes-engine
1222 | - RCT-Folly/Fabric (= 2024.01.01.00)
1223 | - React-cxxreact
1224 | - React-debug
1225 | - React-jsi
1226 | - React-jsi (0.76.6):
1227 | - boost
1228 | - DoubleConversion
1229 | - fmt (= 9.1.0)
1230 | - glog
1231 | - hermes-engine
1232 | - RCT-Folly (= 2024.01.01.00)
1233 | - React-jsiexecutor (0.76.6):
1234 | - DoubleConversion
1235 | - fmt (= 9.1.0)
1236 | - glog
1237 | - hermes-engine
1238 | - RCT-Folly (= 2024.01.01.00)
1239 | - React-cxxreact (= 0.76.6)
1240 | - React-jsi (= 0.76.6)
1241 | - React-jsinspector
1242 | - React-perflogger (= 0.76.6)
1243 | - React-jsinspector (0.76.6):
1244 | - DoubleConversion
1245 | - glog
1246 | - hermes-engine
1247 | - RCT-Folly (= 2024.01.01.00)
1248 | - React-featureflags
1249 | - React-jsi
1250 | - React-perflogger (= 0.76.6)
1251 | - React-runtimeexecutor (= 0.76.6)
1252 | - React-jsitracing (0.76.6):
1253 | - React-jsi
1254 | - React-logger (0.76.6):
1255 | - glog
1256 | - React-Mapbuffer (0.76.6):
1257 | - glog
1258 | - React-debug
1259 | - React-microtasksnativemodule (0.76.6):
1260 | - DoubleConversion
1261 | - glog
1262 | - hermes-engine
1263 | - RCT-Folly (= 2024.01.01.00)
1264 | - RCTRequired
1265 | - RCTTypeSafety
1266 | - React-Core
1267 | - React-debug
1268 | - React-Fabric
1269 | - React-featureflags
1270 | - React-graphics
1271 | - React-ImageManager
1272 | - React-NativeModulesApple
1273 | - React-RCTFabric
1274 | - React-rendererdebug
1275 | - React-utils
1276 | - ReactCodegen
1277 | - ReactCommon/turbomodule/bridging
1278 | - ReactCommon/turbomodule/core
1279 | - Yoga
1280 | - React-nativeconfig (0.76.6)
1281 | - React-NativeModulesApple (0.76.6):
1282 | - glog
1283 | - hermes-engine
1284 | - React-callinvoker
1285 | - React-Core
1286 | - React-cxxreact
1287 | - React-jsi
1288 | - React-jsinspector
1289 | - React-runtimeexecutor
1290 | - ReactCommon/turbomodule/bridging
1291 | - ReactCommon/turbomodule/core
1292 | - React-perflogger (0.76.6):
1293 | - DoubleConversion
1294 | - RCT-Folly (= 2024.01.01.00)
1295 | - React-performancetimeline (0.76.6):
1296 | - RCT-Folly (= 2024.01.01.00)
1297 | - React-cxxreact
1298 | - React-timing
1299 | - React-RCTActionSheet (0.76.6):
1300 | - React-Core/RCTActionSheetHeaders (= 0.76.6)
1301 | - React-RCTAnimation (0.76.6):
1302 | - RCT-Folly (= 2024.01.01.00)
1303 | - RCTTypeSafety
1304 | - React-Core/RCTAnimationHeaders
1305 | - React-jsi
1306 | - React-NativeModulesApple
1307 | - ReactCodegen
1308 | - ReactCommon
1309 | - React-RCTAppDelegate (0.76.6):
1310 | - RCT-Folly (= 2024.01.01.00)
1311 | - RCTRequired
1312 | - RCTTypeSafety
1313 | - React-Core
1314 | - React-CoreModules
1315 | - React-debug
1316 | - React-defaultsnativemodule
1317 | - React-Fabric
1318 | - React-featureflags
1319 | - React-graphics
1320 | - React-hermes
1321 | - React-nativeconfig
1322 | - React-NativeModulesApple
1323 | - React-RCTFabric
1324 | - React-RCTImage
1325 | - React-RCTNetwork
1326 | - React-rendererdebug
1327 | - React-RuntimeApple
1328 | - React-RuntimeCore
1329 | - React-RuntimeHermes
1330 | - React-runtimescheduler
1331 | - React-utils
1332 | - ReactCodegen
1333 | - ReactCommon
1334 | - React-RCTBlob (0.76.6):
1335 | - DoubleConversion
1336 | - fmt (= 9.1.0)
1337 | - hermes-engine
1338 | - RCT-Folly (= 2024.01.01.00)
1339 | - React-Core/RCTBlobHeaders
1340 | - React-Core/RCTWebSocket
1341 | - React-jsi
1342 | - React-jsinspector
1343 | - React-NativeModulesApple
1344 | - React-RCTNetwork
1345 | - ReactCodegen
1346 | - ReactCommon
1347 | - React-RCTFabric (0.76.6):
1348 | - glog
1349 | - hermes-engine
1350 | - RCT-Folly/Fabric (= 2024.01.01.00)
1351 | - React-Core
1352 | - React-debug
1353 | - React-Fabric
1354 | - React-FabricComponents
1355 | - React-FabricImage
1356 | - React-featureflags
1357 | - React-graphics
1358 | - React-ImageManager
1359 | - React-jsi
1360 | - React-jsinspector
1361 | - React-nativeconfig
1362 | - React-performancetimeline
1363 | - React-RCTImage
1364 | - React-RCTText
1365 | - React-rendererconsistency
1366 | - React-rendererdebug
1367 | - React-runtimescheduler
1368 | - React-utils
1369 | - Yoga
1370 | - React-RCTImage (0.76.6):
1371 | - RCT-Folly (= 2024.01.01.00)
1372 | - RCTTypeSafety
1373 | - React-Core/RCTImageHeaders
1374 | - React-jsi
1375 | - React-NativeModulesApple
1376 | - React-RCTNetwork
1377 | - ReactCodegen
1378 | - ReactCommon
1379 | - React-RCTLinking (0.76.6):
1380 | - React-Core/RCTLinkingHeaders (= 0.76.6)
1381 | - React-jsi (= 0.76.6)
1382 | - React-NativeModulesApple
1383 | - ReactCodegen
1384 | - ReactCommon
1385 | - ReactCommon/turbomodule/core (= 0.76.6)
1386 | - React-RCTNetwork (0.76.6):
1387 | - RCT-Folly (= 2024.01.01.00)
1388 | - RCTTypeSafety
1389 | - React-Core/RCTNetworkHeaders
1390 | - React-jsi
1391 | - React-NativeModulesApple
1392 | - ReactCodegen
1393 | - ReactCommon
1394 | - React-RCTSettings (0.76.6):
1395 | - RCT-Folly (= 2024.01.01.00)
1396 | - RCTTypeSafety
1397 | - React-Core/RCTSettingsHeaders
1398 | - React-jsi
1399 | - React-NativeModulesApple
1400 | - ReactCodegen
1401 | - ReactCommon
1402 | - React-RCTText (0.76.6):
1403 | - React-Core/RCTTextHeaders (= 0.76.6)
1404 | - Yoga
1405 | - React-RCTVibration (0.76.6):
1406 | - RCT-Folly (= 2024.01.01.00)
1407 | - React-Core/RCTVibrationHeaders
1408 | - React-jsi
1409 | - React-NativeModulesApple
1410 | - ReactCodegen
1411 | - ReactCommon
1412 | - React-rendererconsistency (0.76.6)
1413 | - React-rendererdebug (0.76.6):
1414 | - DoubleConversion
1415 | - fmt (= 9.1.0)
1416 | - RCT-Folly (= 2024.01.01.00)
1417 | - React-debug
1418 | - React-rncore (0.76.6)
1419 | - React-RuntimeApple (0.76.6):
1420 | - hermes-engine
1421 | - RCT-Folly/Fabric (= 2024.01.01.00)
1422 | - React-callinvoker
1423 | - React-Core/Default
1424 | - React-CoreModules
1425 | - React-cxxreact
1426 | - React-jserrorhandler
1427 | - React-jsi
1428 | - React-jsiexecutor
1429 | - React-jsinspector
1430 | - React-Mapbuffer
1431 | - React-NativeModulesApple
1432 | - React-RCTFabric
1433 | - React-RuntimeCore
1434 | - React-runtimeexecutor
1435 | - React-RuntimeHermes
1436 | - React-runtimescheduler
1437 | - React-utils
1438 | - React-RuntimeCore (0.76.6):
1439 | - glog
1440 | - hermes-engine
1441 | - RCT-Folly/Fabric (= 2024.01.01.00)
1442 | - React-cxxreact
1443 | - React-featureflags
1444 | - React-jserrorhandler
1445 | - React-jsi
1446 | - React-jsiexecutor
1447 | - React-jsinspector
1448 | - React-performancetimeline
1449 | - React-runtimeexecutor
1450 | - React-runtimescheduler
1451 | - React-utils
1452 | - React-runtimeexecutor (0.76.6):
1453 | - React-jsi (= 0.76.6)
1454 | - React-RuntimeHermes (0.76.6):
1455 | - hermes-engine
1456 | - RCT-Folly/Fabric (= 2024.01.01.00)
1457 | - React-featureflags
1458 | - React-hermes
1459 | - React-jsi
1460 | - React-jsinspector
1461 | - React-jsitracing
1462 | - React-nativeconfig
1463 | - React-RuntimeCore
1464 | - React-utils
1465 | - React-runtimescheduler (0.76.6):
1466 | - glog
1467 | - hermes-engine
1468 | - RCT-Folly (= 2024.01.01.00)
1469 | - React-callinvoker
1470 | - React-cxxreact
1471 | - React-debug
1472 | - React-featureflags
1473 | - React-jsi
1474 | - React-performancetimeline
1475 | - React-rendererconsistency
1476 | - React-rendererdebug
1477 | - React-runtimeexecutor
1478 | - React-timing
1479 | - React-utils
1480 | - React-timing (0.76.6)
1481 | - React-utils (0.76.6):
1482 | - glog
1483 | - hermes-engine
1484 | - RCT-Folly (= 2024.01.01.00)
1485 | - React-debug
1486 | - React-jsi (= 0.76.6)
1487 | - ReactCodegen (0.76.6):
1488 | - DoubleConversion
1489 | - glog
1490 | - hermes-engine
1491 | - RCT-Folly
1492 | - RCTRequired
1493 | - RCTTypeSafety
1494 | - React-Core
1495 | - React-debug
1496 | - React-Fabric
1497 | - React-FabricImage
1498 | - React-featureflags
1499 | - React-graphics
1500 | - React-jsi
1501 | - React-jsiexecutor
1502 | - React-NativeModulesApple
1503 | - React-rendererdebug
1504 | - React-utils
1505 | - ReactCommon/turbomodule/bridging
1506 | - ReactCommon/turbomodule/core
1507 | - ReactCommon (0.76.6):
1508 | - ReactCommon/turbomodule (= 0.76.6)
1509 | - ReactCommon/turbomodule (0.76.6):
1510 | - DoubleConversion
1511 | - fmt (= 9.1.0)
1512 | - glog
1513 | - hermes-engine
1514 | - RCT-Folly (= 2024.01.01.00)
1515 | - React-callinvoker (= 0.76.6)
1516 | - React-cxxreact (= 0.76.6)
1517 | - React-jsi (= 0.76.6)
1518 | - React-logger (= 0.76.6)
1519 | - React-perflogger (= 0.76.6)
1520 | - ReactCommon/turbomodule/bridging (= 0.76.6)
1521 | - ReactCommon/turbomodule/core (= 0.76.6)
1522 | - ReactCommon/turbomodule/bridging (0.76.6):
1523 | - DoubleConversion
1524 | - fmt (= 9.1.0)
1525 | - glog
1526 | - hermes-engine
1527 | - RCT-Folly (= 2024.01.01.00)
1528 | - React-callinvoker (= 0.76.6)
1529 | - React-cxxreact (= 0.76.6)
1530 | - React-jsi (= 0.76.6)
1531 | - React-logger (= 0.76.6)
1532 | - React-perflogger (= 0.76.6)
1533 | - ReactCommon/turbomodule/core (0.76.6):
1534 | - DoubleConversion
1535 | - fmt (= 9.1.0)
1536 | - glog
1537 | - hermes-engine
1538 | - RCT-Folly (= 2024.01.01.00)
1539 | - React-callinvoker (= 0.76.6)
1540 | - React-cxxreact (= 0.76.6)
1541 | - React-debug (= 0.76.6)
1542 | - React-featureflags (= 0.76.6)
1543 | - React-jsi (= 0.76.6)
1544 | - React-logger (= 0.76.6)
1545 | - React-perflogger (= 0.76.6)
1546 | - React-utils (= 0.76.6)
1547 | - ReactNativeAnimatedNumber (0.1.0):
1548 | - ExpoModulesCore
1549 | - SocketRocket (0.7.1)
1550 | - Yoga (0.0.0)
1551 |
1552 | DEPENDENCIES:
1553 | - boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`)
1554 | - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
1555 | - EXConstants (from `../node_modules/expo-constants/ios`)
1556 | - Expo (from `../node_modules/expo`)
1557 | - ExpoAsset (from `../node_modules/expo-asset/ios`)
1558 | - ExpoFileSystem (from `../node_modules/expo-file-system/ios`)
1559 | - ExpoFont (from `../node_modules/expo-font/ios`)
1560 | - ExpoKeepAwake (from `../node_modules/expo-keep-awake/ios`)
1561 | - ExpoModulesCore (from `../node_modules/expo-modules-core`)
1562 | - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
1563 | - fmt (from `../node_modules/react-native/third-party-podspecs/fmt.podspec`)
1564 | - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
1565 | - hermes-engine (from `../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec`)
1566 | - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
1567 | - RCT-Folly/Fabric (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
1568 | - RCTDeprecation (from `../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation`)
1569 | - RCTRequired (from `../node_modules/react-native/Libraries/Required`)
1570 | - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
1571 | - React (from `../node_modules/react-native/`)
1572 | - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
1573 | - React-Core (from `../node_modules/react-native/`)
1574 | - React-Core/RCTWebSocket (from `../node_modules/react-native/`)
1575 | - React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
1576 | - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
1577 | - React-debug (from `../node_modules/react-native/ReactCommon/react/debug`)
1578 | - React-defaultsnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/defaults`)
1579 | - React-domnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/dom`)
1580 | - React-Fabric (from `../node_modules/react-native/ReactCommon`)
1581 | - React-FabricComponents (from `../node_modules/react-native/ReactCommon`)
1582 | - React-FabricImage (from `../node_modules/react-native/ReactCommon`)
1583 | - React-featureflags (from `../node_modules/react-native/ReactCommon/react/featureflags`)
1584 | - React-featureflagsnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/featureflags`)
1585 | - React-graphics (from `../node_modules/react-native/ReactCommon/react/renderer/graphics`)
1586 | - React-hermes (from `../node_modules/react-native/ReactCommon/hermes`)
1587 | - React-idlecallbacksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks`)
1588 | - React-ImageManager (from `../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios`)
1589 | - React-jserrorhandler (from `../node_modules/react-native/ReactCommon/jserrorhandler`)
1590 | - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
1591 | - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
1592 | - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector-modern`)
1593 | - React-jsitracing (from `../node_modules/react-native/ReactCommon/hermes/executor/`)
1594 | - React-logger (from `../node_modules/react-native/ReactCommon/logger`)
1595 | - React-Mapbuffer (from `../node_modules/react-native/ReactCommon`)
1596 | - React-microtasksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/microtasks`)
1597 | - React-nativeconfig (from `../node_modules/react-native/ReactCommon`)
1598 | - React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`)
1599 | - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
1600 | - React-performancetimeline (from `../node_modules/react-native/ReactCommon/react/performance/timeline`)
1601 | - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
1602 | - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
1603 | - React-RCTAppDelegate (from `../node_modules/react-native/Libraries/AppDelegate`)
1604 | - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
1605 | - React-RCTFabric (from `../node_modules/react-native/React`)
1606 | - React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
1607 | - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
1608 | - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
1609 | - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
1610 | - React-RCTText (from `../node_modules/react-native/Libraries/Text`)
1611 | - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
1612 | - React-rendererconsistency (from `../node_modules/react-native/ReactCommon/react/renderer/consistency`)
1613 | - React-rendererdebug (from `../node_modules/react-native/ReactCommon/react/renderer/debug`)
1614 | - React-rncore (from `../node_modules/react-native/ReactCommon`)
1615 | - React-RuntimeApple (from `../node_modules/react-native/ReactCommon/react/runtime/platform/ios`)
1616 | - React-RuntimeCore (from `../node_modules/react-native/ReactCommon/react/runtime`)
1617 | - React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
1618 | - React-RuntimeHermes (from `../node_modules/react-native/ReactCommon/react/runtime`)
1619 | - React-runtimescheduler (from `../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`)
1620 | - React-timing (from `../node_modules/react-native/ReactCommon/react/timing`)
1621 | - React-utils (from `../node_modules/react-native/ReactCommon/react/utils`)
1622 | - ReactCodegen (from `build/generated/ios`)
1623 | - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
1624 | - ReactNativeAnimatedNumber (from `../../ios`)
1625 | - Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
1626 |
1627 | SPEC REPOS:
1628 | trunk:
1629 | - SocketRocket
1630 |
1631 | EXTERNAL SOURCES:
1632 | boost:
1633 | :podspec: "../node_modules/react-native/third-party-podspecs/boost.podspec"
1634 | DoubleConversion:
1635 | :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
1636 | EXConstants:
1637 | :path: "../node_modules/expo-constants/ios"
1638 | Expo:
1639 | :path: "../node_modules/expo"
1640 | ExpoAsset:
1641 | :path: "../node_modules/expo-asset/ios"
1642 | ExpoFileSystem:
1643 | :path: "../node_modules/expo-file-system/ios"
1644 | ExpoFont:
1645 | :path: "../node_modules/expo-font/ios"
1646 | ExpoKeepAwake:
1647 | :path: "../node_modules/expo-keep-awake/ios"
1648 | ExpoModulesCore:
1649 | :path: "../node_modules/expo-modules-core"
1650 | FBLazyVector:
1651 | :path: "../node_modules/react-native/Libraries/FBLazyVector"
1652 | fmt:
1653 | :podspec: "../node_modules/react-native/third-party-podspecs/fmt.podspec"
1654 | glog:
1655 | :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
1656 | hermes-engine:
1657 | :podspec: "../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec"
1658 | :tag: hermes-2024-11-12-RNv0.76.2-5b4aa20c719830dcf5684832b89a6edb95ac3d64
1659 | RCT-Folly:
1660 | :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
1661 | RCTDeprecation:
1662 | :path: "../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation"
1663 | RCTRequired:
1664 | :path: "../node_modules/react-native/Libraries/Required"
1665 | RCTTypeSafety:
1666 | :path: "../node_modules/react-native/Libraries/TypeSafety"
1667 | React:
1668 | :path: "../node_modules/react-native/"
1669 | React-callinvoker:
1670 | :path: "../node_modules/react-native/ReactCommon/callinvoker"
1671 | React-Core:
1672 | :path: "../node_modules/react-native/"
1673 | React-CoreModules:
1674 | :path: "../node_modules/react-native/React/CoreModules"
1675 | React-cxxreact:
1676 | :path: "../node_modules/react-native/ReactCommon/cxxreact"
1677 | React-debug:
1678 | :path: "../node_modules/react-native/ReactCommon/react/debug"
1679 | React-defaultsnativemodule:
1680 | :path: "../node_modules/react-native/ReactCommon/react/nativemodule/defaults"
1681 | React-domnativemodule:
1682 | :path: "../node_modules/react-native/ReactCommon/react/nativemodule/dom"
1683 | React-Fabric:
1684 | :path: "../node_modules/react-native/ReactCommon"
1685 | React-FabricComponents:
1686 | :path: "../node_modules/react-native/ReactCommon"
1687 | React-FabricImage:
1688 | :path: "../node_modules/react-native/ReactCommon"
1689 | React-featureflags:
1690 | :path: "../node_modules/react-native/ReactCommon/react/featureflags"
1691 | React-featureflagsnativemodule:
1692 | :path: "../node_modules/react-native/ReactCommon/react/nativemodule/featureflags"
1693 | React-graphics:
1694 | :path: "../node_modules/react-native/ReactCommon/react/renderer/graphics"
1695 | React-hermes:
1696 | :path: "../node_modules/react-native/ReactCommon/hermes"
1697 | React-idlecallbacksnativemodule:
1698 | :path: "../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks"
1699 | React-ImageManager:
1700 | :path: "../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios"
1701 | React-jserrorhandler:
1702 | :path: "../node_modules/react-native/ReactCommon/jserrorhandler"
1703 | React-jsi:
1704 | :path: "../node_modules/react-native/ReactCommon/jsi"
1705 | React-jsiexecutor:
1706 | :path: "../node_modules/react-native/ReactCommon/jsiexecutor"
1707 | React-jsinspector:
1708 | :path: "../node_modules/react-native/ReactCommon/jsinspector-modern"
1709 | React-jsitracing:
1710 | :path: "../node_modules/react-native/ReactCommon/hermes/executor/"
1711 | React-logger:
1712 | :path: "../node_modules/react-native/ReactCommon/logger"
1713 | React-Mapbuffer:
1714 | :path: "../node_modules/react-native/ReactCommon"
1715 | React-microtasksnativemodule:
1716 | :path: "../node_modules/react-native/ReactCommon/react/nativemodule/microtasks"
1717 | React-nativeconfig:
1718 | :path: "../node_modules/react-native/ReactCommon"
1719 | React-NativeModulesApple:
1720 | :path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios"
1721 | React-perflogger:
1722 | :path: "../node_modules/react-native/ReactCommon/reactperflogger"
1723 | React-performancetimeline:
1724 | :path: "../node_modules/react-native/ReactCommon/react/performance/timeline"
1725 | React-RCTActionSheet:
1726 | :path: "../node_modules/react-native/Libraries/ActionSheetIOS"
1727 | React-RCTAnimation:
1728 | :path: "../node_modules/react-native/Libraries/NativeAnimation"
1729 | React-RCTAppDelegate:
1730 | :path: "../node_modules/react-native/Libraries/AppDelegate"
1731 | React-RCTBlob:
1732 | :path: "../node_modules/react-native/Libraries/Blob"
1733 | React-RCTFabric:
1734 | :path: "../node_modules/react-native/React"
1735 | React-RCTImage:
1736 | :path: "../node_modules/react-native/Libraries/Image"
1737 | React-RCTLinking:
1738 | :path: "../node_modules/react-native/Libraries/LinkingIOS"
1739 | React-RCTNetwork:
1740 | :path: "../node_modules/react-native/Libraries/Network"
1741 | React-RCTSettings:
1742 | :path: "../node_modules/react-native/Libraries/Settings"
1743 | React-RCTText:
1744 | :path: "../node_modules/react-native/Libraries/Text"
1745 | React-RCTVibration:
1746 | :path: "../node_modules/react-native/Libraries/Vibration"
1747 | React-rendererconsistency:
1748 | :path: "../node_modules/react-native/ReactCommon/react/renderer/consistency"
1749 | React-rendererdebug:
1750 | :path: "../node_modules/react-native/ReactCommon/react/renderer/debug"
1751 | React-rncore:
1752 | :path: "../node_modules/react-native/ReactCommon"
1753 | React-RuntimeApple:
1754 | :path: "../node_modules/react-native/ReactCommon/react/runtime/platform/ios"
1755 | React-RuntimeCore:
1756 | :path: "../node_modules/react-native/ReactCommon/react/runtime"
1757 | React-runtimeexecutor:
1758 | :path: "../node_modules/react-native/ReactCommon/runtimeexecutor"
1759 | React-RuntimeHermes:
1760 | :path: "../node_modules/react-native/ReactCommon/react/runtime"
1761 | React-runtimescheduler:
1762 | :path: "../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler"
1763 | React-timing:
1764 | :path: "../node_modules/react-native/ReactCommon/react/timing"
1765 | React-utils:
1766 | :path: "../node_modules/react-native/ReactCommon/react/utils"
1767 | ReactCodegen:
1768 | :path: build/generated/ios
1769 | ReactCommon:
1770 | :path: "../node_modules/react-native/ReactCommon"
1771 | ReactNativeAnimatedNumber:
1772 | :path: "../../ios"
1773 | Yoga:
1774 | :path: "../node_modules/react-native/ReactCommon/yoga"
1775 |
1776 | SPEC CHECKSUMS:
1777 | boost: 1dca942403ed9342f98334bf4c3621f011aa7946
1778 | DoubleConversion: f16ae600a246532c4020132d54af21d0ddb2a385
1779 | EXConstants: 6b8c5653492349b3c3fe6b905c556bc45b360405
1780 | Expo: 63db23579a7a878567185fa0524b8294b4f93b28
1781 | ExpoAsset: d2d2cbc6a4efadf51a3da27d85d589935abd0b98
1782 | ExpoFileSystem: 818e82dbb71175414d1ca310e926c48ff0d07348
1783 | ExpoFont: 38656978c2a4022fb7e0c43e4968d66340f5e2f3
1784 | ExpoKeepAwake: 62ff49bbc3bff90d8ee28329190f9ba371bf88e7
1785 | ExpoModulesCore: 7e6ae3311a7d566bd284043dc17627b2dac8c203
1786 | FBLazyVector: be509404b5de73a64a74284edcaf73a5d1e128b1
1787 | fmt: 10c6e61f4be25dc963c36bd73fc7b1705fe975be
1788 | glog: 08b301085f15bcbb6ff8632a8ebaf239aae04e6a
1789 | hermes-engine: 1949ca944b195a8bde7cbf6316b9068e19cf53c6
1790 | RCT-Folly: 84578c8756030547307e4572ab1947de1685c599
1791 | RCTDeprecation: 063fc281b30b7dc944c98fe53a7e266dab1a8706
1792 | RCTRequired: 8eda2a5a745f6081157a4f34baac40b65fe02b31
1793 | RCTTypeSafety: 0f96bf6c99efc33eb43352212703854933f22930
1794 | React: 1d3d5bada479030961d513fb11e42659b30e97ff
1795 | React-callinvoker: 682c610b9e9d3b93bd8d0075eacb2e6aa304d3e0
1796 | React-Core: 9f33c0fc7776a5796d4dae09c363bd58e6a27efe
1797 | React-CoreModules: 91afb654834f0a1f48fb26dd1f4d1a1460c44def
1798 | React-cxxreact: c7491114266a70f8215306f1d0c4b54a811e77cf
1799 | React-debug: 4ae2e95c2d392cca29939a3a2f2b4320ddff3e59
1800 | React-defaultsnativemodule: 43d27f1844b4c18fc03fa4fa35ea2f1c48d64237
1801 | React-domnativemodule: bca178dd0ce1532f75be783f6f2923f675a778ae
1802 | React-Fabric: d6bc0222335270eb76c28dd5036c03a010c04d51
1803 | React-FabricComponents: 05eec9e2cf998be793daaee8fa8a8ea6d1187785
1804 | React-FabricImage: 3a12374b0aedda71c7ef6bd64b59479b8bb3fe05
1805 | React-featureflags: 5670e0dcdc17ba2515963d117dacc13d5b69c431
1806 | React-featureflagsnativemodule: bb13129d1427327b2eb8cc13d3879363a4cd8326
1807 | React-graphics: 659968f797257c0071ddff28a2d094c8e5c5899c
1808 | React-hermes: 6eb81c6f72c25d9058b6030227d0fcc1f741a807
1809 | React-idlecallbacksnativemodule: 551b7a89b46041c746640fe13eacf39c1b169709
1810 | React-ImageManager: e3d0270c82bf39432da2aff2fcd60dd16b308689
1811 | React-jserrorhandler: f60c9b68b4d4ac1449bddc2553610708e939ddee
1812 | React-jsi: 47528a2928f38fe15e3d06a96de886e1a779ffc7
1813 | React-jsiexecutor: 88a141c4dc821e1b2aa7ecc7d6af7b186e8455a2
1814 | React-jsinspector: c26cf4118ea7c1aae721d2cde5acf3b2cdceb814
1815 | React-jsitracing: 810d0465c3455e352a71147c18332b1cba1d1410
1816 | React-logger: d42a53754a7252cc7a851315f0da2e46b450ea92
1817 | React-Mapbuffer: 89885d1518433a462fe64b68bf5e097997380090
1818 | React-microtasksnativemodule: 36341e09dcd1df535503e6ed2ddf88f10da56d52
1819 | React-nativeconfig: 539ff4de6ce3b694e8e751080568c281c84903ce
1820 | React-NativeModulesApple: 702246817c286d057e23fe4b1302019796e62521
1821 | React-perflogger: f260e2de95f9dbd002035251559c13bf1f0643d4
1822 | React-performancetimeline: 957075cead70fe9536a327eb4f842b3d8982f2ec
1823 | React-RCTActionSheet: ed5a845eae98fe455b9a1d71f057d626e2f3f1c5
1824 | React-RCTAnimation: a49bd2c28c3f32b1d01ff1163603aee3d420ce42
1825 | React-RCTAppDelegate: f7aa2f938a6673cfd2a76e76fea8c4b38a4a5bec
1826 | React-RCTBlob: 8ddf30f97222f4d8227f64428349fd8252292cb5
1827 | React-RCTFabric: 51fb64f7ca7ca2fa334433ba6d4f12750a481cf1
1828 | React-RCTImage: 077a25f3a9a6b79938a01c2cfae05ea5f07fc584
1829 | React-RCTLinking: 0c8415c600942454d663c4c4dc0d3b00aa7ba5e5
1830 | React-RCTNetwork: 42a3c6fb5318dcc9f8796f43de081799fb905021
1831 | React-RCTSettings: 1028522e45192515bd8c5308752d3270ee95fd66
1832 | React-RCTText: 29ef786d78f69ec5b571634ef2ddd6ec177c958a
1833 | React-RCTVibration: 97859ed50816369f4830f623dfac8dc9877f3c5c
1834 | React-rendererconsistency: ccd50d5ee6544b26cd11fff5ad1112c5058a0064
1835 | React-rendererdebug: 2092a1207a0023ac30877f4f730b403bfaf5ccbe
1836 | React-rncore: bfe554cb773978e8b94898866964c9579cb0c70c
1837 | React-RuntimeApple: 80949ebe7e6a94296e0168a940832d2029b66982
1838 | React-RuntimeCore: f04b5d1eb0534a4f4f46bc76a938a9360ad91024
1839 | React-runtimeexecutor: 26a9d14619ec1359470df391be9abb7c80a21b2b
1840 | React-RuntimeHermes: 91c2a67a99f316f11a08d3d9280ab4c9fae59b56
1841 | React-runtimescheduler: 76bb85f5ba01e800b4970fbc84eeaf10756c50c4
1842 | React-timing: c9c7c0fe2fdfc433ef208889b6191dfb45457d68
1843 | React-utils: 1b14c41c3edf4d96db1247a78e0ad96e7ceea011
1844 | ReactCodegen: 0a0eef9c8cd84c932ae1868832086c6441811e84
1845 | ReactCommon: 3c1c8c6d777103c0e60e37c6c5f08e828e2a77c9
1846 | ReactNativeAnimatedNumber: ef08830061d416974545525142651eb0ee6b6e2b
1847 | SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748
1848 | Yoga: be6f55a028e86c83ae066f018e9b5d24ffc45436
1849 |
1850 | PODFILE CHECKSUM: a27978f04e8a97bdb3b75ab43e4f11ff25b06840
1851 |
1852 | COCOAPODS: 1.16.2
1853 |
--------------------------------------------------------------------------------
/example/ios/Podfile.properties.json:
--------------------------------------------------------------------------------
1 | {
2 | "expo.jsEngine": "hermes",
3 | "EX_DEV_CLIENT_NETWORK_INSPECTOR": "true",
4 | "newArchEnabled": "true"
5 | }
6 |
--------------------------------------------------------------------------------
/example/ios/reactnativeanimatednumberexample.xcodeproj/project.pbxproj:
--------------------------------------------------------------------------------
1 | // !$*UTF8*$!
2 | {
3 | archiveVersion = 1;
4 | classes = {
5 | };
6 | objectVersion = 54;
7 | objects = {
8 |
9 | /* Begin PBXBuildFile section */
10 | 13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.mm */; };
11 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
12 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
13 | 17E2FF20EB4741AF8F23AAC2 /* noop-file.swift in Sources */ = {isa = PBXBuildFile; fileRef = 404D4D065617487A9D74AC8D /* noop-file.swift */; };
14 | 3E461D99554A48A4959DE609 /* SplashScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = AA286B85B6C04FC6940260E9 /* SplashScreen.storyboard */; };
15 | 96905EF65AED1B983A6B3ABC /* libPods-reactnativeanimatednumberexample.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 58EEBF8E8E6FB1BC6CAF49B5 /* libPods-reactnativeanimatednumberexample.a */; };
16 | B18059E884C0ABDD17F3DC3D /* ExpoModulesProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = FAC715A2D49A985799AEE119 /* ExpoModulesProvider.swift */; };
17 | BB2F792D24A3F905000567C9 /* Expo.plist in Resources */ = {isa = PBXBuildFile; fileRef = BB2F792C24A3F905000567C9 /* Expo.plist */; };
18 | F817B4CD7D6CA5686EA3EFCB /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = C00AAC216E47B3EA826C8822 /* PrivacyInfo.xcprivacy */; };
19 | /* End PBXBuildFile section */
20 |
21 | /* Begin PBXFileReference section */
22 | 13B07F961A680F5B00A75B9A /* reactnativeanimatednumberexample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = reactnativeanimatednumberexample.app; sourceTree = BUILT_PRODUCTS_DIR; };
23 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = reactnativeanimatednumberexample/AppDelegate.h; sourceTree = ""; };
24 | 13B07FB01A68108700A75B9A /* AppDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AppDelegate.mm; path = reactnativeanimatednumberexample/AppDelegate.mm; sourceTree = ""; };
25 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = reactnativeanimatednumberexample/Images.xcassets; sourceTree = ""; };
26 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = reactnativeanimatednumberexample/Info.plist; sourceTree = ""; };
27 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = reactnativeanimatednumberexample/main.m; sourceTree = ""; };
28 | 404D4D065617487A9D74AC8D /* noop-file.swift */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 4; includeInIndex = 0; lastKnownFileType = sourcecode.swift; name = "noop-file.swift"; path = "reactnativeanimatednumberexample/noop-file.swift"; sourceTree = ""; };
29 | 515139CD10024BC18B5542B5 /* reactnativeanimatednumberexample-Bridging-Header.h */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 4; includeInIndex = 0; lastKnownFileType = sourcecode.c.h; name = "reactnativeanimatednumberexample-Bridging-Header.h"; path = "reactnativeanimatednumberexample/reactnativeanimatednumberexample-Bridging-Header.h"; sourceTree = ""; };
30 | 58EEBF8E8E6FB1BC6CAF49B5 /* libPods-reactnativeanimatednumberexample.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-reactnativeanimatednumberexample.a"; sourceTree = BUILT_PRODUCTS_DIR; };
31 | 6C2E3173556A471DD304B334 /* Pods-reactnativeanimatednumberexample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-reactnativeanimatednumberexample.debug.xcconfig"; path = "Target Support Files/Pods-reactnativeanimatednumberexample/Pods-reactnativeanimatednumberexample.debug.xcconfig"; sourceTree = ""; };
32 | 7A4D352CD337FB3A3BF06240 /* Pods-reactnativeanimatednumberexample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-reactnativeanimatednumberexample.release.xcconfig"; path = "Target Support Files/Pods-reactnativeanimatednumberexample/Pods-reactnativeanimatednumberexample.release.xcconfig"; sourceTree = ""; };
33 | AA286B85B6C04FC6940260E9 /* SplashScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = SplashScreen.storyboard; path = reactnativeanimatednumberexample/SplashScreen.storyboard; sourceTree = ""; };
34 | BB2F792C24A3F905000567C9 /* Expo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Expo.plist; sourceTree = ""; };
35 | C00AAC216E47B3EA826C8822 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = reactnativeanimatednumberexample/PrivacyInfo.xcprivacy; sourceTree = ""; };
36 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
37 | FAC715A2D49A985799AEE119 /* ExpoModulesProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExpoModulesProvider.swift; path = "Pods/Target Support Files/Pods-reactnativeanimatednumberexample/ExpoModulesProvider.swift"; sourceTree = ""; };
38 | /* End PBXFileReference section */
39 |
40 | /* Begin PBXFrameworksBuildPhase section */
41 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
42 | isa = PBXFrameworksBuildPhase;
43 | buildActionMask = 2147483647;
44 | files = (
45 | 96905EF65AED1B983A6B3ABC /* libPods-reactnativeanimatednumberexample.a in Frameworks */,
46 | );
47 | runOnlyForDeploymentPostprocessing = 0;
48 | };
49 | /* End PBXFrameworksBuildPhase section */
50 |
51 | /* Begin PBXGroup section */
52 | 13B07FAE1A68108700A75B9A /* reactnativeanimatednumberexample */ = {
53 | isa = PBXGroup;
54 | children = (
55 | BB2F792B24A3F905000567C9 /* Supporting */,
56 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */,
57 | 13B07FB01A68108700A75B9A /* AppDelegate.mm */,
58 | 13B07FB51A68108700A75B9A /* Images.xcassets */,
59 | 13B07FB61A68108700A75B9A /* Info.plist */,
60 | 13B07FB71A68108700A75B9A /* main.m */,
61 | AA286B85B6C04FC6940260E9 /* SplashScreen.storyboard */,
62 | 404D4D065617487A9D74AC8D /* noop-file.swift */,
63 | 515139CD10024BC18B5542B5 /* reactnativeanimatednumberexample-Bridging-Header.h */,
64 | C00AAC216E47B3EA826C8822 /* PrivacyInfo.xcprivacy */,
65 | );
66 | name = reactnativeanimatednumberexample;
67 | sourceTree = "";
68 | };
69 | 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
70 | isa = PBXGroup;
71 | children = (
72 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
73 | 58EEBF8E8E6FB1BC6CAF49B5 /* libPods-reactnativeanimatednumberexample.a */,
74 | );
75 | name = Frameworks;
76 | sourceTree = "";
77 | };
78 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
79 | isa = PBXGroup;
80 | children = (
81 | );
82 | name = Libraries;
83 | sourceTree = "";
84 | };
85 | 83CBB9F61A601CBA00E9B192 = {
86 | isa = PBXGroup;
87 | children = (
88 | 13B07FAE1A68108700A75B9A /* reactnativeanimatednumberexample */,
89 | 832341AE1AAA6A7D00B99B32 /* Libraries */,
90 | 83CBBA001A601CBA00E9B192 /* Products */,
91 | 2D16E6871FA4F8E400B85C8A /* Frameworks */,
92 | D65327D7A22EEC0BE12398D9 /* Pods */,
93 | D7E4C46ADA2E9064B798F356 /* ExpoModulesProviders */,
94 | );
95 | indentWidth = 2;
96 | sourceTree = "";
97 | tabWidth = 2;
98 | usesTabs = 0;
99 | };
100 | 83CBBA001A601CBA00E9B192 /* Products */ = {
101 | isa = PBXGroup;
102 | children = (
103 | 13B07F961A680F5B00A75B9A /* reactnativeanimatednumberexample.app */,
104 | );
105 | name = Products;
106 | sourceTree = "";
107 | };
108 | 92DBD88DE9BF7D494EA9DA96 /* reactnativeanimatednumberexample */ = {
109 | isa = PBXGroup;
110 | children = (
111 | FAC715A2D49A985799AEE119 /* ExpoModulesProvider.swift */,
112 | );
113 | name = reactnativeanimatednumberexample;
114 | sourceTree = "";
115 | };
116 | BB2F792B24A3F905000567C9 /* Supporting */ = {
117 | isa = PBXGroup;
118 | children = (
119 | BB2F792C24A3F905000567C9 /* Expo.plist */,
120 | );
121 | name = Supporting;
122 | path = reactnativeanimatednumberexample/Supporting;
123 | sourceTree = "";
124 | };
125 | D65327D7A22EEC0BE12398D9 /* Pods */ = {
126 | isa = PBXGroup;
127 | children = (
128 | 6C2E3173556A471DD304B334 /* Pods-reactnativeanimatednumberexample.debug.xcconfig */,
129 | 7A4D352CD337FB3A3BF06240 /* Pods-reactnativeanimatednumberexample.release.xcconfig */,
130 | );
131 | path = Pods;
132 | sourceTree = "";
133 | };
134 | D7E4C46ADA2E9064B798F356 /* ExpoModulesProviders */ = {
135 | isa = PBXGroup;
136 | children = (
137 | 92DBD88DE9BF7D494EA9DA96 /* reactnativeanimatednumberexample */,
138 | );
139 | name = ExpoModulesProviders;
140 | sourceTree = "";
141 | };
142 | /* End PBXGroup section */
143 |
144 | /* Begin PBXNativeTarget section */
145 | 13B07F861A680F5B00A75B9A /* reactnativeanimatednumberexample */ = {
146 | isa = PBXNativeTarget;
147 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "reactnativeanimatednumberexample" */;
148 | buildPhases = (
149 | 08A4A3CD28434E44B6B9DE2E /* [CP] Check Pods Manifest.lock */,
150 | DD38DDD01F10233AD7F504FB /* [Expo] Configure project */,
151 | 13B07F871A680F5B00A75B9A /* Sources */,
152 | 13B07F8C1A680F5B00A75B9A /* Frameworks */,
153 | 13B07F8E1A680F5B00A75B9A /* Resources */,
154 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
155 | 800E24972A6A228C8D4807E9 /* [CP] Copy Pods Resources */,
156 | 4D15C1A0C3E3D0102568D148 /* [CP] Embed Pods Frameworks */,
157 | );
158 | buildRules = (
159 | );
160 | dependencies = (
161 | );
162 | name = reactnativeanimatednumberexample;
163 | productName = reactnativeanimatednumberexample;
164 | productReference = 13B07F961A680F5B00A75B9A /* reactnativeanimatednumberexample.app */;
165 | productType = "com.apple.product-type.application";
166 | };
167 | /* End PBXNativeTarget section */
168 |
169 | /* Begin PBXProject section */
170 | 83CBB9F71A601CBA00E9B192 /* Project object */ = {
171 | isa = PBXProject;
172 | attributes = {
173 | LastUpgradeCheck = 1130;
174 | TargetAttributes = {
175 | 13B07F861A680F5B00A75B9A = {
176 | LastSwiftMigration = 1250;
177 | };
178 | };
179 | };
180 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "reactnativeanimatednumberexample" */;
181 | compatibilityVersion = "Xcode 3.2";
182 | developmentRegion = en;
183 | hasScannedForEncodings = 0;
184 | knownRegions = (
185 | en,
186 | Base,
187 | );
188 | mainGroup = 83CBB9F61A601CBA00E9B192;
189 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
190 | projectDirPath = "";
191 | projectRoot = "";
192 | targets = (
193 | 13B07F861A680F5B00A75B9A /* reactnativeanimatednumberexample */,
194 | );
195 | };
196 | /* End PBXProject section */
197 |
198 | /* Begin PBXResourcesBuildPhase section */
199 | 13B07F8E1A680F5B00A75B9A /* Resources */ = {
200 | isa = PBXResourcesBuildPhase;
201 | buildActionMask = 2147483647;
202 | files = (
203 | BB2F792D24A3F905000567C9 /* Expo.plist in Resources */,
204 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
205 | 3E461D99554A48A4959DE609 /* SplashScreen.storyboard in Resources */,
206 | F817B4CD7D6CA5686EA3EFCB /* PrivacyInfo.xcprivacy in Resources */,
207 | );
208 | runOnlyForDeploymentPostprocessing = 0;
209 | };
210 | /* End PBXResourcesBuildPhase section */
211 |
212 | /* Begin PBXShellScriptBuildPhase section */
213 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
214 | isa = PBXShellScriptBuildPhase;
215 | alwaysOutOfDate = 1;
216 | buildActionMask = 2147483647;
217 | files = (
218 | );
219 | inputPaths = (
220 | );
221 | name = "Bundle React Native code and images";
222 | outputPaths = (
223 | );
224 | runOnlyForDeploymentPostprocessing = 0;
225 | shellPath = /bin/sh;
226 | shellScript = "if [[ -f \"$PODS_ROOT/../.xcode.env\" ]]; then\n source \"$PODS_ROOT/../.xcode.env\"\nfi\nif [[ -f \"$PODS_ROOT/../.xcode.env.local\" ]]; then\n source \"$PODS_ROOT/../.xcode.env.local\"\nfi\n\n# The project root by default is one level up from the ios directory\nexport PROJECT_ROOT=\"$PROJECT_DIR\"/..\n\nif [[ \"$CONFIGURATION\" = *Debug* ]]; then\n export SKIP_BUNDLING=1\nfi\nif [[ -z \"$ENTRY_FILE\" ]]; then\n # Set the entry JS file using the bundler's entry resolution.\n export ENTRY_FILE=\"$(\"$NODE_BINARY\" -e \"require('expo/scripts/resolveAppEntry')\" \"$PROJECT_ROOT\" ios absolute | tail -n 1)\"\nfi\n\nif [[ -z \"$CLI_PATH\" ]]; then\n # Use Expo CLI\n export CLI_PATH=\"$(\"$NODE_BINARY\" --print \"require.resolve('@expo/cli', { paths: [require.resolve('expo/package.json')] })\")\"\nfi\nif [[ -z \"$BUNDLE_COMMAND\" ]]; then\n # Default Expo CLI command for bundling\n export BUNDLE_COMMAND=\"export:embed\"\nfi\n\n# Source .xcode.env.updates if it exists to allow\n# SKIP_BUNDLING to be unset if needed\nif [[ -f \"$PODS_ROOT/../.xcode.env.updates\" ]]; then\n source \"$PODS_ROOT/../.xcode.env.updates\"\nfi\n# Source local changes to allow overrides\n# if needed\nif [[ -f \"$PODS_ROOT/../.xcode.env.local\" ]]; then\n source \"$PODS_ROOT/../.xcode.env.local\"\nfi\n\n`\"$NODE_BINARY\" --print \"require('path').dirname(require.resolve('react-native/package.json')) + '/scripts/react-native-xcode.sh'\"`\n\n";
227 | };
228 | 08A4A3CD28434E44B6B9DE2E /* [CP] Check Pods Manifest.lock */ = {
229 | isa = PBXShellScriptBuildPhase;
230 | buildActionMask = 2147483647;
231 | files = (
232 | );
233 | inputFileListPaths = (
234 | );
235 | inputPaths = (
236 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
237 | "${PODS_ROOT}/Manifest.lock",
238 | );
239 | name = "[CP] Check Pods Manifest.lock";
240 | outputFileListPaths = (
241 | );
242 | outputPaths = (
243 | "$(DERIVED_FILE_DIR)/Pods-reactnativeanimatednumberexample-checkManifestLockResult.txt",
244 | );
245 | runOnlyForDeploymentPostprocessing = 0;
246 | shellPath = /bin/sh;
247 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
248 | showEnvVarsInLog = 0;
249 | };
250 | 4D15C1A0C3E3D0102568D148 /* [CP] Embed Pods Frameworks */ = {
251 | isa = PBXShellScriptBuildPhase;
252 | buildActionMask = 2147483647;
253 | files = (
254 | );
255 | inputPaths = (
256 | "${PODS_ROOT}/Target Support Files/Pods-reactnativeanimatednumberexample/Pods-reactnativeanimatednumberexample-frameworks.sh",
257 | "${PODS_XCFRAMEWORKS_BUILD_DIR}/hermes-engine/Pre-built/hermes.framework/hermes",
258 | );
259 | name = "[CP] Embed Pods Frameworks";
260 | outputPaths = (
261 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/hermes.framework",
262 | );
263 | runOnlyForDeploymentPostprocessing = 0;
264 | shellPath = /bin/sh;
265 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-reactnativeanimatednumberexample/Pods-reactnativeanimatednumberexample-frameworks.sh\"\n";
266 | showEnvVarsInLog = 0;
267 | };
268 | 800E24972A6A228C8D4807E9 /* [CP] Copy Pods Resources */ = {
269 | isa = PBXShellScriptBuildPhase;
270 | buildActionMask = 2147483647;
271 | files = (
272 | );
273 | inputPaths = (
274 | "${PODS_ROOT}/Target Support Files/Pods-reactnativeanimatednumberexample/Pods-reactnativeanimatednumberexample-resources.sh",
275 | "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants/EXConstants.bundle",
276 | "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants/ExpoConstants_privacy.bundle",
277 | "${PODS_CONFIGURATION_BUILD_DIR}/ExpoFileSystem/ExpoFileSystem_privacy.bundle",
278 | "${PODS_CONFIGURATION_BUILD_DIR}/RCT-Folly/RCT-Folly_privacy.bundle",
279 | "${PODS_CONFIGURATION_BUILD_DIR}/React-Core/React-Core_privacy.bundle",
280 | "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact/React-cxxreact_privacy.bundle",
281 | "${PODS_CONFIGURATION_BUILD_DIR}/boost/boost_privacy.bundle",
282 | "${PODS_CONFIGURATION_BUILD_DIR}/glog/glog_privacy.bundle",
283 | );
284 | name = "[CP] Copy Pods Resources";
285 | outputPaths = (
286 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/EXConstants.bundle",
287 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/ExpoConstants_privacy.bundle",
288 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/ExpoFileSystem_privacy.bundle",
289 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RCT-Folly_privacy.bundle",
290 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/React-Core_privacy.bundle",
291 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/React-cxxreact_privacy.bundle",
292 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/boost_privacy.bundle",
293 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/glog_privacy.bundle",
294 | );
295 | runOnlyForDeploymentPostprocessing = 0;
296 | shellPath = /bin/sh;
297 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-reactnativeanimatednumberexample/Pods-reactnativeanimatednumberexample-resources.sh\"\n";
298 | showEnvVarsInLog = 0;
299 | };
300 | DD38DDD01F10233AD7F504FB /* [Expo] Configure project */ = {
301 | isa = PBXShellScriptBuildPhase;
302 | alwaysOutOfDate = 1;
303 | buildActionMask = 2147483647;
304 | files = (
305 | );
306 | inputFileListPaths = (
307 | );
308 | inputPaths = (
309 | );
310 | name = "[Expo] Configure project";
311 | outputFileListPaths = (
312 | );
313 | outputPaths = (
314 | );
315 | runOnlyForDeploymentPostprocessing = 0;
316 | shellPath = /bin/sh;
317 | shellScript = "# This script configures Expo modules and generates the modules provider file.\nbash -l -c \"./Pods/Target\\ Support\\ Files/Pods-reactnativeanimatednumberexample/expo-configure-project.sh\"\n";
318 | };
319 | /* End PBXShellScriptBuildPhase section */
320 |
321 | /* Begin PBXSourcesBuildPhase section */
322 | 13B07F871A680F5B00A75B9A /* Sources */ = {
323 | isa = PBXSourcesBuildPhase;
324 | buildActionMask = 2147483647;
325 | files = (
326 | 13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */,
327 | 13B07FC11A68108700A75B9A /* main.m in Sources */,
328 | B18059E884C0ABDD17F3DC3D /* ExpoModulesProvider.swift in Sources */,
329 | 17E2FF20EB4741AF8F23AAC2 /* noop-file.swift in Sources */,
330 | );
331 | runOnlyForDeploymentPostprocessing = 0;
332 | };
333 | /* End PBXSourcesBuildPhase section */
334 |
335 | /* Begin XCBuildConfiguration section */
336 | 13B07F941A680F5B00A75B9A /* Debug */ = {
337 | isa = XCBuildConfiguration;
338 | baseConfigurationReference = 6C2E3173556A471DD304B334 /* Pods-reactnativeanimatednumberexample.debug.xcconfig */;
339 | buildSettings = {
340 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
341 | CLANG_ENABLE_MODULES = YES;
342 | CODE_SIGN_ENTITLEMENTS = reactnativeanimatednumberexample/reactnativeanimatednumberexample.entitlements;
343 | CURRENT_PROJECT_VERSION = 1;
344 | ENABLE_BITCODE = NO;
345 | GCC_PREPROCESSOR_DEFINITIONS = (
346 | "$(inherited)",
347 | "FB_SONARKIT_ENABLED=1",
348 | );
349 | INFOPLIST_FILE = reactnativeanimatednumberexample/Info.plist;
350 | IPHONEOS_DEPLOYMENT_TARGET = 17.6;
351 | LD_RUNPATH_SEARCH_PATHS = (
352 | "$(inherited)",
353 | "@executable_path/Frameworks",
354 | );
355 | MARKETING_VERSION = 1.0;
356 | OTHER_LDFLAGS = (
357 | "$(inherited)",
358 | "-ObjC",
359 | "-lc++",
360 | );
361 | OTHER_SWIFT_FLAGS = "$(inherited) -D EXPO_CONFIGURATION_DEBUG";
362 | PRODUCT_BUNDLE_IDENTIFIER = expo.modules.animatednumber.example;
363 | PRODUCT_NAME = reactnativeanimatednumberexample;
364 | SWIFT_OBJC_BRIDGING_HEADER = "reactnativeanimatednumberexample/reactnativeanimatednumberexample-Bridging-Header.h";
365 | SWIFT_OPTIMIZATION_LEVEL = "-Onone";
366 | SWIFT_VERSION = 5.0;
367 | TARGETED_DEVICE_FAMILY = "1,2";
368 | VERSIONING_SYSTEM = "apple-generic";
369 | };
370 | name = Debug;
371 | };
372 | 13B07F951A680F5B00A75B9A /* Release */ = {
373 | isa = XCBuildConfiguration;
374 | baseConfigurationReference = 7A4D352CD337FB3A3BF06240 /* Pods-reactnativeanimatednumberexample.release.xcconfig */;
375 | buildSettings = {
376 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
377 | CLANG_ENABLE_MODULES = YES;
378 | CODE_SIGN_ENTITLEMENTS = reactnativeanimatednumberexample/reactnativeanimatednumberexample.entitlements;
379 | CURRENT_PROJECT_VERSION = 1;
380 | INFOPLIST_FILE = reactnativeanimatednumberexample/Info.plist;
381 | IPHONEOS_DEPLOYMENT_TARGET = 17.6;
382 | LD_RUNPATH_SEARCH_PATHS = (
383 | "$(inherited)",
384 | "@executable_path/Frameworks",
385 | );
386 | MARKETING_VERSION = 1.0;
387 | OTHER_LDFLAGS = (
388 | "$(inherited)",
389 | "-ObjC",
390 | "-lc++",
391 | );
392 | OTHER_SWIFT_FLAGS = "$(inherited) -D EXPO_CONFIGURATION_RELEASE";
393 | PRODUCT_BUNDLE_IDENTIFIER = expo.modules.animatednumber.example;
394 | PRODUCT_NAME = reactnativeanimatednumberexample;
395 | SWIFT_OBJC_BRIDGING_HEADER = "reactnativeanimatednumberexample/reactnativeanimatednumberexample-Bridging-Header.h";
396 | SWIFT_VERSION = 5.0;
397 | TARGETED_DEVICE_FAMILY = "1,2";
398 | VERSIONING_SYSTEM = "apple-generic";
399 | };
400 | name = Release;
401 | };
402 | 83CBBA201A601CBA00E9B192 /* Debug */ = {
403 | isa = XCBuildConfiguration;
404 | buildSettings = {
405 | ALWAYS_SEARCH_USER_PATHS = NO;
406 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
407 | CLANG_CXX_LANGUAGE_STANDARD = "c++20";
408 | CLANG_CXX_LIBRARY = "libc++";
409 | CLANG_ENABLE_MODULES = YES;
410 | CLANG_ENABLE_OBJC_ARC = YES;
411 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
412 | CLANG_WARN_BOOL_CONVERSION = YES;
413 | CLANG_WARN_COMMA = YES;
414 | CLANG_WARN_CONSTANT_CONVERSION = YES;
415 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
416 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
417 | CLANG_WARN_EMPTY_BODY = YES;
418 | CLANG_WARN_ENUM_CONVERSION = YES;
419 | CLANG_WARN_INFINITE_RECURSION = YES;
420 | CLANG_WARN_INT_CONVERSION = YES;
421 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
422 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
423 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
424 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
425 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
426 | CLANG_WARN_STRICT_PROTOTYPES = YES;
427 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
428 | CLANG_WARN_UNREACHABLE_CODE = YES;
429 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
430 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
431 | COPY_PHASE_STRIP = NO;
432 | ENABLE_STRICT_OBJC_MSGSEND = YES;
433 | ENABLE_TESTABILITY = YES;
434 | GCC_C_LANGUAGE_STANDARD = gnu99;
435 | GCC_DYNAMIC_NO_PIC = NO;
436 | GCC_NO_COMMON_BLOCKS = YES;
437 | GCC_OPTIMIZATION_LEVEL = 0;
438 | GCC_PREPROCESSOR_DEFINITIONS = (
439 | "DEBUG=1",
440 | "$(inherited)",
441 | );
442 | GCC_SYMBOLS_PRIVATE_EXTERN = NO;
443 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
444 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
445 | GCC_WARN_UNDECLARED_SELECTOR = YES;
446 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
447 | GCC_WARN_UNUSED_FUNCTION = YES;
448 | GCC_WARN_UNUSED_VARIABLE = YES;
449 | IPHONEOS_DEPLOYMENT_TARGET = 15.1;
450 | LD_RUNPATH_SEARCH_PATHS = (
451 | /usr/lib/swift,
452 | "$(inherited)",
453 | );
454 | LIBRARY_SEARCH_PATHS = "$(SDKROOT)/usr/lib/swift\"$(inherited)\"";
455 | MTL_ENABLE_DEBUG_INFO = YES;
456 | ONLY_ACTIVE_ARCH = YES;
457 | OTHER_LDFLAGS = "$(inherited) ";
458 | REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
459 | SDKROOT = iphoneos;
460 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG";
461 | USE_HERMES = true;
462 | };
463 | name = Debug;
464 | };
465 | 83CBBA211A601CBA00E9B192 /* Release */ = {
466 | isa = XCBuildConfiguration;
467 | buildSettings = {
468 | ALWAYS_SEARCH_USER_PATHS = NO;
469 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
470 | CLANG_CXX_LANGUAGE_STANDARD = "c++20";
471 | CLANG_CXX_LIBRARY = "libc++";
472 | CLANG_ENABLE_MODULES = YES;
473 | CLANG_ENABLE_OBJC_ARC = YES;
474 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
475 | CLANG_WARN_BOOL_CONVERSION = YES;
476 | CLANG_WARN_COMMA = YES;
477 | CLANG_WARN_CONSTANT_CONVERSION = YES;
478 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
479 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
480 | CLANG_WARN_EMPTY_BODY = YES;
481 | CLANG_WARN_ENUM_CONVERSION = YES;
482 | CLANG_WARN_INFINITE_RECURSION = YES;
483 | CLANG_WARN_INT_CONVERSION = YES;
484 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
485 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
486 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
487 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
488 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
489 | CLANG_WARN_STRICT_PROTOTYPES = YES;
490 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
491 | CLANG_WARN_UNREACHABLE_CODE = YES;
492 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
493 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
494 | COPY_PHASE_STRIP = YES;
495 | ENABLE_NS_ASSERTIONS = NO;
496 | ENABLE_STRICT_OBJC_MSGSEND = YES;
497 | GCC_C_LANGUAGE_STANDARD = gnu99;
498 | GCC_NO_COMMON_BLOCKS = YES;
499 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
500 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
501 | GCC_WARN_UNDECLARED_SELECTOR = YES;
502 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
503 | GCC_WARN_UNUSED_FUNCTION = YES;
504 | GCC_WARN_UNUSED_VARIABLE = YES;
505 | IPHONEOS_DEPLOYMENT_TARGET = 15.1;
506 | LD_RUNPATH_SEARCH_PATHS = (
507 | /usr/lib/swift,
508 | "$(inherited)",
509 | );
510 | LIBRARY_SEARCH_PATHS = "$(SDKROOT)/usr/lib/swift\"$(inherited)\"";
511 | MTL_ENABLE_DEBUG_INFO = NO;
512 | OTHER_LDFLAGS = "$(inherited) ";
513 | REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
514 | SDKROOT = iphoneos;
515 | USE_HERMES = true;
516 | VALIDATE_PRODUCT = YES;
517 | };
518 | name = Release;
519 | };
520 | /* End XCBuildConfiguration section */
521 |
522 | /* Begin XCConfigurationList section */
523 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "reactnativeanimatednumberexample" */ = {
524 | isa = XCConfigurationList;
525 | buildConfigurations = (
526 | 13B07F941A680F5B00A75B9A /* Debug */,
527 | 13B07F951A680F5B00A75B9A /* Release */,
528 | );
529 | defaultConfigurationIsVisible = 0;
530 | defaultConfigurationName = Release;
531 | };
532 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "reactnativeanimatednumberexample" */ = {
533 | isa = XCConfigurationList;
534 | buildConfigurations = (
535 | 83CBBA201A601CBA00E9B192 /* Debug */,
536 | 83CBBA211A601CBA00E9B192 /* Release */,
537 | );
538 | defaultConfigurationIsVisible = 0;
539 | defaultConfigurationName = Release;
540 | };
541 | /* End XCConfigurationList section */
542 | };
543 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
544 | }
545 |
--------------------------------------------------------------------------------
/example/ios/reactnativeanimatednumberexample.xcodeproj/xcshareddata/xcschemes/reactnativeanimatednumberexample.xcscheme:
--------------------------------------------------------------------------------
1 |
2 |
5 |
8 |
9 |
15 |
21 |
22 |
23 |
24 |
25 |
30 |
31 |
33 |
39 |
40 |
41 |
42 |
43 |
53 |
55 |
61 |
62 |
63 |
64 |
70 |
72 |
78 |
79 |
80 |
81 |
83 |
84 |
87 |
88 |
89 |
--------------------------------------------------------------------------------
/example/ios/reactnativeanimatednumberexample.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/example/ios/reactnativeanimatednumberexample/AppDelegate.h:
--------------------------------------------------------------------------------
1 | #import
2 | #import
3 | #import
4 |
5 | @interface AppDelegate : EXAppDelegateWrapper
6 |
7 | @end
8 |
--------------------------------------------------------------------------------
/example/ios/reactnativeanimatednumberexample/AppDelegate.mm:
--------------------------------------------------------------------------------
1 | #import "AppDelegate.h"
2 |
3 | #import
4 | #import
5 |
6 | @implementation AppDelegate
7 |
8 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
9 | {
10 | self.moduleName = @"main";
11 |
12 | // You can add your custom initial props in the dictionary below.
13 | // They will be passed down to the ViewController used by React Native.
14 | self.initialProps = @{};
15 |
16 | return [super application:application didFinishLaunchingWithOptions:launchOptions];
17 | }
18 |
19 | - (NSURL *)sourceURLForBridge:(RCTBridge *)bridge
20 | {
21 | return [self bundleURL];
22 | }
23 |
24 | - (NSURL *)bundleURL
25 | {
26 | #if DEBUG
27 | return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@".expo/.virtual-metro-entry"];
28 | #else
29 | return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"];
30 | #endif
31 | }
32 |
33 | // Linking API
34 | - (BOOL)application:(UIApplication *)application openURL:(NSURL *)url options:(NSDictionary *)options {
35 | return [super application:application openURL:url options:options] || [RCTLinkingManager application:application openURL:url options:options];
36 | }
37 |
38 | // Universal Links
39 | - (BOOL)application:(UIApplication *)application continueUserActivity:(nonnull NSUserActivity *)userActivity restorationHandler:(nonnull void (^)(NSArray> * _Nullable))restorationHandler {
40 | BOOL result = [RCTLinkingManager application:application continueUserActivity:userActivity restorationHandler:restorationHandler];
41 | return [super application:application continueUserActivity:userActivity restorationHandler:restorationHandler] || result;
42 | }
43 |
44 | // Explicitly define remote notification delegates to ensure compatibility with some third-party libraries
45 | - (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken
46 | {
47 | return [super application:application didRegisterForRemoteNotificationsWithDeviceToken:deviceToken];
48 | }
49 |
50 | // Explicitly define remote notification delegates to ensure compatibility with some third-party libraries
51 | - (void)application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error
52 | {
53 | return [super application:application didFailToRegisterForRemoteNotificationsWithError:error];
54 | }
55 |
56 | // Explicitly define remote notification delegates to ensure compatibility with some third-party libraries
57 | - (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler
58 | {
59 | return [super application:application didReceiveRemoteNotification:userInfo fetchCompletionHandler:completionHandler];
60 | }
61 |
62 | @end
63 |
--------------------------------------------------------------------------------
/example/ios/reactnativeanimatednumberexample/Images.xcassets/AppIcon.appiconset/App-Icon-1024x1024@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/anhquan291/react-native-animated-number/102c52449f5a1078103a4da5ee138ec1ae2df68c/example/ios/reactnativeanimatednumberexample/Images.xcassets/AppIcon.appiconset/App-Icon-1024x1024@1x.png
--------------------------------------------------------------------------------
/example/ios/reactnativeanimatednumberexample/Images.xcassets/AppIcon.appiconset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images": [
3 | {
4 | "filename": "App-Icon-1024x1024@1x.png",
5 | "idiom": "universal",
6 | "platform": "ios",
7 | "size": "1024x1024"
8 | }
9 | ],
10 | "info": {
11 | "version": 1,
12 | "author": "expo"
13 | }
14 | }
--------------------------------------------------------------------------------
/example/ios/reactnativeanimatednumberexample/Images.xcassets/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "info" : {
3 | "version" : 1,
4 | "author" : "expo"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/example/ios/reactnativeanimatednumberexample/Images.xcassets/SplashScreenBackground.colorset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "colors": [
3 | {
4 | "color": {
5 | "components": {
6 | "alpha": "1.000",
7 | "blue": "1.00000000000000",
8 | "green": "1.00000000000000",
9 | "red": "1.00000000000000"
10 | },
11 | "color-space": "srgb"
12 | },
13 | "idiom": "universal"
14 | }
15 | ],
16 | "info": {
17 | "version": 1,
18 | "author": "expo"
19 | }
20 | }
--------------------------------------------------------------------------------
/example/ios/reactnativeanimatednumberexample/Images.xcassets/SplashScreenLogo.imageset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images": [
3 | {
4 | "idiom": "universal",
5 | "filename": "image.png",
6 | "scale": "1x"
7 | },
8 | {
9 | "idiom": "universal",
10 | "filename": "image@2x.png",
11 | "scale": "2x"
12 | },
13 | {
14 | "idiom": "universal",
15 | "filename": "image@3x.png",
16 | "scale": "3x"
17 | }
18 | ],
19 | "info": {
20 | "version": 1,
21 | "author": "expo"
22 | }
23 | }
--------------------------------------------------------------------------------
/example/ios/reactnativeanimatednumberexample/Images.xcassets/SplashScreenLogo.imageset/image.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/anhquan291/react-native-animated-number/102c52449f5a1078103a4da5ee138ec1ae2df68c/example/ios/reactnativeanimatednumberexample/Images.xcassets/SplashScreenLogo.imageset/image.png
--------------------------------------------------------------------------------
/example/ios/reactnativeanimatednumberexample/Images.xcassets/SplashScreenLogo.imageset/image@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/anhquan291/react-native-animated-number/102c52449f5a1078103a4da5ee138ec1ae2df68c/example/ios/reactnativeanimatednumberexample/Images.xcassets/SplashScreenLogo.imageset/image@2x.png
--------------------------------------------------------------------------------
/example/ios/reactnativeanimatednumberexample/Images.xcassets/SplashScreenLogo.imageset/image@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/anhquan291/react-native-animated-number/102c52449f5a1078103a4da5ee138ec1ae2df68c/example/ios/reactnativeanimatednumberexample/Images.xcassets/SplashScreenLogo.imageset/image@3x.png
--------------------------------------------------------------------------------
/example/ios/reactnativeanimatednumberexample/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CADisableMinimumFrameDurationOnPhone
6 |
7 | CFBundleDevelopmentRegion
8 | $(DEVELOPMENT_LANGUAGE)
9 | CFBundleDisplayName
10 | react-native-animated-number-example
11 | CFBundleExecutable
12 | $(EXECUTABLE_NAME)
13 | CFBundleIdentifier
14 | $(PRODUCT_BUNDLE_IDENTIFIER)
15 | CFBundleInfoDictionaryVersion
16 | 6.0
17 | CFBundleName
18 | $(PRODUCT_NAME)
19 | CFBundlePackageType
20 | $(PRODUCT_BUNDLE_PACKAGE_TYPE)
21 | CFBundleShortVersionString
22 | 1.0.0
23 | CFBundleSignature
24 | ????
25 | CFBundleURLTypes
26 |
27 |
28 | CFBundleURLSchemes
29 |
30 | expo.modules.animatednumber.example
31 |
32 |
33 |
34 | CFBundleVersion
35 | 1
36 | LSMinimumSystemVersion
37 | 12.0
38 | LSRequiresIPhoneOS
39 |
40 | NSAppTransportSecurity
41 |
42 | NSAllowsArbitraryLoads
43 |
44 | NSAllowsLocalNetworking
45 |
46 |
47 | UILaunchStoryboardName
48 | SplashScreen
49 | UIRequiredDeviceCapabilities
50 |
51 | arm64
52 |
53 | UIRequiresFullScreen
54 |
55 | UIStatusBarStyle
56 | UIStatusBarStyleDefault
57 | UISupportedInterfaceOrientations
58 |
59 | UIInterfaceOrientationPortrait
60 | UIInterfaceOrientationPortraitUpsideDown
61 |
62 | UISupportedInterfaceOrientations~ipad
63 |
64 | UIInterfaceOrientationPortrait
65 | UIInterfaceOrientationPortraitUpsideDown
66 | UIInterfaceOrientationLandscapeLeft
67 | UIInterfaceOrientationLandscapeRight
68 |
69 | UIUserInterfaceStyle
70 | Light
71 | UIViewControllerBasedStatusBarAppearance
72 |
73 |
74 |
--------------------------------------------------------------------------------
/example/ios/reactnativeanimatednumberexample/PrivacyInfo.xcprivacy:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | NSPrivacyAccessedAPITypes
6 |
7 |
8 | NSPrivacyAccessedAPIType
9 | NSPrivacyAccessedAPICategoryUserDefaults
10 | NSPrivacyAccessedAPITypeReasons
11 |
12 | CA92.1
13 |
14 |
15 |
16 | NSPrivacyAccessedAPIType
17 | NSPrivacyAccessedAPICategoryFileTimestamp
18 | NSPrivacyAccessedAPITypeReasons
19 |
20 | 0A2A.1
21 | 3B52.1
22 | C617.1
23 |
24 |
25 |
26 | NSPrivacyAccessedAPIType
27 | NSPrivacyAccessedAPICategoryDiskSpace
28 | NSPrivacyAccessedAPITypeReasons
29 |
30 | E174.1
31 | 85F4.1
32 |
33 |
34 |
35 | NSPrivacyAccessedAPIType
36 | NSPrivacyAccessedAPICategorySystemBootTime
37 | NSPrivacyAccessedAPITypeReasons
38 |
39 | 35F9.1
40 |
41 |
42 |
43 | NSPrivacyCollectedDataTypes
44 |
45 | NSPrivacyTracking
46 |
47 |
48 |
49 |
--------------------------------------------------------------------------------
/example/ios/reactnativeanimatednumberexample/SplashScreen.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
--------------------------------------------------------------------------------
/example/ios/reactnativeanimatednumberexample/Supporting/Expo.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | EXUpdatesCheckOnLaunch
6 | ALWAYS
7 | EXUpdatesEnabled
8 |
9 | EXUpdatesLaunchWaitMs
10 | 0
11 |
12 |
--------------------------------------------------------------------------------
/example/ios/reactnativeanimatednumberexample/main.m:
--------------------------------------------------------------------------------
1 | #import
2 |
3 | #import "AppDelegate.h"
4 |
5 | int main(int argc, char * argv[]) {
6 | @autoreleasepool {
7 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
8 | }
9 | }
10 |
11 |
--------------------------------------------------------------------------------
/example/ios/reactnativeanimatednumberexample/noop-file.swift:
--------------------------------------------------------------------------------
1 | //
2 | // @generated
3 | // A blank Swift file must be created for native modules with Swift files to work correctly.
4 | //
5 |
--------------------------------------------------------------------------------
/example/ios/reactnativeanimatednumberexample/reactnativeanimatednumberexample-Bridging-Header.h:
--------------------------------------------------------------------------------
1 | //
2 | // Use this file to import your target's public headers that you would like to expose to Swift.
3 | //
4 |
--------------------------------------------------------------------------------
/example/ios/reactnativeanimatednumberexample/reactnativeanimatednumberexample.entitlements:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/example/metro.config.js:
--------------------------------------------------------------------------------
1 | // Learn more https://docs.expo.io/guides/customizing-metro
2 | const { getDefaultConfig } = require('expo/metro-config');
3 | const path = require('path');
4 |
5 | const config = getDefaultConfig(__dirname);
6 |
7 | // npm v7+ will install ../node_modules/react and ../node_modules/react-native because of peerDependencies.
8 | // To prevent the incompatible react-native between ./node_modules/react-native and ../node_modules/react-native,
9 | // excludes the one from the parent folder when bundling.
10 | config.resolver.blockList = [
11 | ...Array.from(config.resolver.blockList ?? []),
12 | new RegExp(path.resolve('..', 'node_modules', 'react')),
13 | new RegExp(path.resolve('..', 'node_modules', 'react-native')),
14 | ];
15 |
16 | config.resolver.nodeModulesPaths = [
17 | path.resolve(__dirname, './node_modules'),
18 | path.resolve(__dirname, '../node_modules'),
19 | ];
20 |
21 | config.resolver.extraNodeModules = {
22 | 'react-native-animated-number': '..',
23 | };
24 |
25 | config.watchFolders = [path.resolve(__dirname, '..')];
26 |
27 | config.transformer.getTransformOptions = async () => ({
28 | transform: {
29 | experimentalImportSupport: false,
30 | inlineRequires: true,
31 | },
32 | });
33 |
34 | module.exports = config;
35 |
--------------------------------------------------------------------------------
/example/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "react-native-animated-number-example",
3 | "version": "1.0.0",
4 | "main": "index.ts",
5 | "scripts": {
6 | "start": "expo start",
7 | "android": "expo run:android",
8 | "ios": "expo run:ios",
9 | "web": "expo start --web"
10 | },
11 | "dependencies": {
12 | "expo": "~52.0.25",
13 | "react": "18.3.1",
14 | "react-native": "0.76.6"
15 | },
16 | "devDependencies": {
17 | "@babel/core": "^7.25.2",
18 | "@types/react": "~18.3.12",
19 | "typescript": "^5.3.3"
20 | },
21 | "private": true,
22 | "expo": {
23 | "autolinking": {
24 | "nativeModulesDir": ".."
25 | }
26 | }
27 | }
28 |
--------------------------------------------------------------------------------
/example/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "expo/tsconfig.base",
3 | "compilerOptions": {
4 | "strict": true,
5 | "paths": {
6 | "react-native-animated-number": ["../src/index"],
7 | "react-native-animated-number/*": ["../src/*"]
8 | }
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/example/webpack.config.js:
--------------------------------------------------------------------------------
1 | const createConfigAsync = require('@expo/webpack-config');
2 | const path = require('path');
3 |
4 | module.exports = async (env, argv) => {
5 | const config = await createConfigAsync(
6 | {
7 | ...env,
8 | babel: {
9 | dangerouslyAddModulePathsToTranspile: ['react-native-animated-number'],
10 | },
11 | },
12 | argv
13 | );
14 | config.resolve.modules = [
15 | path.resolve(__dirname, './node_modules'),
16 | path.resolve(__dirname, '../node_modules'),
17 | ];
18 |
19 | return config;
20 | };
21 |
--------------------------------------------------------------------------------
/expo-module.config.json:
--------------------------------------------------------------------------------
1 | {
2 | "platforms": [
3 | "apple",
4 | "android",
5 | "web"
6 | ],
7 | "apple": {
8 | "modules": [
9 | "ReactNativeAnimatedNumberModule"
10 | ]
11 | },
12 | "android": {
13 | "modules": [
14 | "expo.modules.animatednumber.ReactNativeAnimatedNumberModule"
15 | ]
16 | }
17 | }
18 |
--------------------------------------------------------------------------------
/ios/AnimatedNumberContentView.swift:
--------------------------------------------------------------------------------
1 | //
2 | // AnimatedNumberContentView.swift
3 | // Pods
4 | //
5 | // Created by Quan Nguyen on 16/1/25.
6 | //
7 |
8 | import SwiftUI
9 |
10 |
11 | @available(iOS 17.0, *)
12 | struct AnimatedNumberContentView: View {
13 | @StateObject var viewModel: AnimatedNumberViewModel
14 |
15 | var body: some View {
16 | // Parse styles
17 | let styleParser = StyleParser(style: viewModel.style)
18 | let backgroundColor = styleParser.backgroundColor
19 | let cornerRadius = styleParser.cornerRadius
20 | let padding = styleParser.padding
21 |
22 | HStack() {
23 | // Styles for Number
24 | let numFont = TextStyle.from(viewModel.numberStyle).font ?? Font.largeTitle.bold()
25 | let numColor = TextStyle.from(viewModel.numberStyle).color ?? "black"
26 |
27 | // Number Text
28 | let num = viewModel.number.isNaN ? 0 : viewModel.number
29 |
30 | let formattedNumber = viewModel.displayDecimal ? "\(num)" : String(format: "%.0f", num)
31 |
32 | Text(formattedNumber)
33 | .font(numFont)
34 | .contentTransition(.numericText(value: num)) // Smooth numeric transition
35 | .animation(.snappy, value: num) // Snappy animation
36 | .foregroundStyle(Color.from(string: numColor))
37 |
38 | // Styles for Unit
39 | let unitFont = TextStyle.from(viewModel.unitStyle).font ?? Font.largeTitle.bold()
40 | let unitColor = TextStyle.from(viewModel.unitStyle).color ?? "black"
41 |
42 | // Unit Text
43 | Text(viewModel.unit)
44 | .font(unitFont)
45 | .foregroundStyle(Color.from(string: unitColor))
46 | }
47 | .padding(padding) // Apply padding INSIDE the view
48 | .background(backgroundColor) // Background color
49 | .cornerRadius(cornerRadius) // Rounded corners
50 | }
51 |
52 |
53 | // Helper for parsing styles
54 | struct StyleParser {
55 | private let style: [String: Any]?
56 |
57 | init(style: [String: Any]?) {
58 | self.style = style
59 | }
60 |
61 | // Background Color
62 | var backgroundColor: Color {
63 | let bgColor = style?["backgroundColor"] as? String ?? "transparent"
64 | return Color.from(string: bgColor)
65 | }
66 |
67 | // Corner Radius
68 | var cornerRadius: CGFloat {
69 | return style?["borderRadius"] as? CGFloat ?? 0.0
70 | }
71 |
72 | // Padding as EdgeInsets
73 | var padding: EdgeInsets {
74 | let top = styleValue(forKey: "paddingTop", fallbackKeys: ["paddingVertical", "padding"])
75 | let bottom = styleValue(forKey: "paddingBottom", fallbackKeys: ["paddingVertical", "padding"])
76 | let left = styleValue(forKey: "paddingLeft", fallbackKeys: ["paddingHorizontal", "padding"])
77 | let right = styleValue(forKey: "paddingRight", fallbackKeys: ["paddingHorizontal", "padding"])
78 |
79 | return EdgeInsets(top: top, leading: left, bottom: bottom, trailing: right)
80 | }
81 |
82 | // Helper function to extract values
83 | private func styleValue(forKey key: String, fallbackKeys: [String]) -> CGFloat {
84 | if let value = style?[key] as? CGFloat {
85 | return value
86 | }
87 | for fallbackKey in fallbackKeys {
88 | if let value = style?[fallbackKey] as? CGFloat {
89 | return value
90 | }
91 | }
92 | return 0.0
93 | }
94 | }
95 |
96 | // Helper struct for text styles
97 | struct TextStyle {
98 | var font: Font?
99 | var color: String?
100 |
101 | static func from(_ style: [String: Any]?) -> TextStyle {
102 | guard let style = style else { return TextStyle() }
103 | var textStyle = TextStyle()
104 |
105 | // Parse fontSize
106 | if let fontSize = style["fontSize"] as? CGFloat {
107 | textStyle.font = Font.system(size: fontSize)
108 | }
109 |
110 | // Parse fontWeight
111 | if let fontWeight = style["fontWeight"] as? String {
112 | textStyle.font = textStyle.font?.weight(Self.fontWeight(from: fontWeight))
113 | }
114 |
115 | // Parse fontFamily (if available)
116 | if let fontFamily = style["fontFamily"] as? String, let fontSize = style["fontSize"] as? CGFloat {
117 | textStyle.font = Font.custom(fontFamily, size: fontSize)
118 | }
119 |
120 | // Parse color
121 | if let color = style["color"] as? String {
122 | textStyle.color = color
123 | }
124 |
125 | return textStyle
126 | }
127 |
128 | // Helper: Map fontWeight strings to SwiftUI Font.Weight
129 | private static func fontWeight(from weight: String) -> Font.Weight {
130 | switch weight.lowercased() {
131 | case "ultralight": return .ultraLight
132 | case "thin": return .thin
133 | case "light": return .light
134 | case "regular": return .regular
135 | case "medium": return .medium
136 | case "semibold": return .semibold
137 | case "bold": return .bold
138 | case "heavy": return .heavy
139 | case "black": return .black
140 | default: return .regular
141 | }
142 | }
143 | }
144 | }
145 |
--------------------------------------------------------------------------------
/ios/AnimatedNumberViewModel.swift:
--------------------------------------------------------------------------------
1 | //
2 | // AnimatedNumberViewModel.swift
3 | // Pods
4 | //
5 | // Created by Quan Nguyen on 16/1/25.
6 | //
7 |
8 | import SwiftUI
9 |
10 | class AnimatedNumberViewModel: ObservableObject {
11 | @Published var number: Double = 0.0 // The number to display
12 | @Published var displayDecimal: Bool = false // The number to display
13 | @Published var unit: String = "" // The unit string (e.g., kg, lbs, %)
14 | @Published var style: [String: Any]? = nil // Outer container styling
15 | @Published var numberStyle: [String: Any]? = nil // Number-specific styling
16 | @Published var unitStyle: [String: Any]? = nil // Unit-specific styling
17 | }
18 |
--------------------------------------------------------------------------------
/ios/Color.swift:
--------------------------------------------------------------------------------
1 | //
2 | // Color.swift
3 | // Pods
4 | //
5 | // Created by Quan Nguyen on 16/1/25.
6 | //
7 |
8 | import SwiftUI
9 |
10 | extension Color {
11 | static func from(string colorString: String?) -> Color {
12 | guard let colorString = colorString else {
13 | return Color.black // Default fallback color
14 | }
15 |
16 | // Check for basic color names ("black", "blue", "red", etc.)
17 | if let basicColor = systemColor(for: colorString) {
18 | return basicColor
19 | }
20 |
21 | // Check if the string is a valid HEX color ("#423424")
22 | if let hexColor = Color(hex: colorString) {
23 | return hexColor
24 | }
25 |
26 | // Fallback to black if parsing fails
27 | return Color.black
28 | }
29 |
30 | // Map predefined color names to system colors
31 | private static func systemColor(for name: String) -> Color? {
32 | switch name.lowercased() {
33 | case "transparent": return .clear
34 | case "black": return .black
35 | case "white": return .white
36 | case "red": return .red
37 | case "green": return .green
38 | case "blue": return .blue
39 | case "yellow": return .yellow
40 | case "gray", "grey": return .gray
41 | default: return nil // If not found, return nil
42 | }
43 | }
44 |
45 | // HEX-to-Color converter (parses hex strings and converts to RGB)
46 | init?(hex: String) {
47 | var hexString = hex
48 |
49 | // Remove '#' prefix if present
50 | if hex.hasPrefix("#") {
51 | hexString = String(hex.dropFirst())
52 | }
53 |
54 | // Ensure the hex string is valid (6 characters)
55 | guard hexString.count == 6 else {
56 | return nil
57 | }
58 |
59 | // Convert the hex string to RGB values
60 | let scanner = Scanner(string: hexString)
61 | var hexInt: UInt64 = 0
62 | guard scanner.scanHexInt64(&hexInt) else {
63 | return nil
64 | }
65 |
66 | let r = Double((hexInt & 0xFF0000) >> 16) / 255.0
67 | let g = Double((hexInt & 0x00FF00) >> 8) / 255.0
68 | let b = Double(hexInt & 0x0000FF) / 255.0
69 |
70 | self.init(red: r, green: g, blue: b)
71 | }
72 | }
73 |
--------------------------------------------------------------------------------
/ios/ReactNativeAnimatedNumber.podspec:
--------------------------------------------------------------------------------
1 | require 'json'
2 |
3 | package = JSON.parse(File.read(File.join(__dir__, '..', 'package.json')))
4 |
5 | Pod::Spec.new do |s|
6 | s.name = 'ReactNativeAnimatedNumber'
7 | s.version = package['version']
8 | s.summary = package['description']
9 | s.description = package['description']
10 | s.license = package['license']
11 | s.author = package['author']
12 | s.homepage = package['homepage']
13 | s.platforms = {
14 | :ios => '15.1',
15 | :tvos => '15.1'
16 | }
17 | s.swift_version = '5.4'
18 | s.source = { git: 'https://github.com/anhquan291/react-native-animated-number' }
19 | s.static_framework = true
20 |
21 | s.dependency 'ExpoModulesCore'
22 |
23 | # Swift/Objective-C compatibility
24 | s.pod_target_xcconfig = {
25 | 'DEFINES_MODULE' => 'YES',
26 | }
27 |
28 | s.source_files = "**/*.{h,m,mm,swift,hpp,cpp}"
29 | end
30 |
--------------------------------------------------------------------------------
/ios/ReactNativeAnimatedNumberModule.swift:
--------------------------------------------------------------------------------
1 | import ExpoModulesCore
2 |
3 | @available(iOS 17.0, *)
4 | public class ReactNativeAnimatedNumberModule: Module {
5 | // Each module class must implement the definition function. The definition consists of components
6 | // that describes the module's functionality and behavior.
7 | // See https://docs.expo.dev/modules/module-api for more details about available components.
8 |
9 | public func definition() -> ModuleDefinition {
10 | // Sets the name of the module that JavaScript code will use to refer to the module. Takes a string as an argument.
11 | // Can be inferred from module's class name, but it's recommended to set it explicitly for clarity.
12 | // The module will be accessible from `requireNativeModule('ReactNativeAnimatedNumber')` in JavaScript.
13 | Name("ReactNativeAnimatedNumber")
14 |
15 | // Enables the module to be used as a native view. Definition components that are accepted as part of the
16 | // view definition: Prop, Events.
17 | View(ReactNativeAnimatedNumberView.self) {
18 | // The `number` property (mandatory)
19 | Prop("number") { (view: ReactNativeAnimatedNumberView, number: Double) in
20 | view.setNumber(number)
21 | }
22 |
23 | // The `displayDecimal` property (optional, defaults to false if not provided)
24 | Prop("displayDecimal") { (view: ReactNativeAnimatedNumberView, displayDecimal: Bool) in
25 | view.setDisplayDecimal(displayDecimal)
26 | }
27 |
28 | // The `unit` property (optional, defaults to an empty string if not provided)
29 | Prop("unit") { (view: ReactNativeAnimatedNumberView, unit: String?) in
30 | view.setUnit(unit ?? "") // Default to empty string if `unit` is nil
31 | }
32 |
33 | // The `style` for the outer container (optional)
34 | Prop("style") { (view: ReactNativeAnimatedNumberView, style: [String: Any]?) in
35 | view.setStyle(style) // Pass directly as it's handled internally
36 | }
37 |
38 | // The `numberStyle` for the number text (optional)
39 | Prop("numberStyle") { (view: ReactNativeAnimatedNumberView, numberStyle: [String: Any]?) in
40 | view.setTextStyle(numberStyle ?? [:]) // Default to an empty dictionary if nil
41 | }
42 |
43 | // The `unitStyle` for the unit text (optional)
44 | Prop("unitStyle") { (view: ReactNativeAnimatedNumberView, unitStyle: [String: Any]?) in
45 | view.setUnitStyle(unitStyle ?? [:]) // Default to an empty dictionary if nil
46 | }
47 | }
48 | }
49 | }
50 |
--------------------------------------------------------------------------------
/ios/ReactNativeAnimatedNumberView.swift:
--------------------------------------------------------------------------------
1 | import ExpoModulesCore
2 | import SwiftUI
3 | import UIKit
4 |
5 | @available(iOS 17.0, *)
6 | class ReactNativeAnimatedNumberView: ExpoView {
7 | // Observable object handles the number, unit, color, and styles
8 | private let viewModel = AnimatedNumberViewModel()
9 |
10 | // SwiftUI host for rendering the AnimatedNumberContentView
11 | private var hostingController: UIHostingController?
12 |
13 | // Initialize and render the SwiftUI View within the native view
14 | required init(appContext: AppContext? = nil) {
15 | super.init(appContext: appContext)
16 |
17 | let contentView = AnimatedNumberContentView(viewModel: self.viewModel)
18 | hostingController = UIHostingController(rootView: contentView)
19 |
20 | if let hostingView = hostingController?.view {
21 | addSubview(hostingView)
22 | }
23 | }
24 |
25 | override func layoutSubviews() {
26 | // Ensure the hosted view takes up the full bounds of the native view
27 | hostingController?.view.frame = bounds
28 | }
29 |
30 | // MARK: - Props
31 |
32 | // Update the `number` property of the viewModel
33 | func setNumber(_ number: Double) {
34 | DispatchQueue.main.async {
35 | withAnimation { // Apply animation on the Swift side when value changes
36 | self.viewModel.number = number
37 | }
38 | }
39 | }
40 |
41 | // Update the `setDisplayDecimal` property of the viewModel
42 | func setDisplayDecimal(_ displayDecimal: Bool) {
43 | DispatchQueue.main.async {
44 | self.viewModel.displayDecimal = displayDecimal
45 | }
46 | }
47 |
48 | // Update the `unit` property of the viewModel
49 | func setUnit(_ unit: String?) {
50 | DispatchQueue.main.async {
51 | self.viewModel.unit = unit ?? ""
52 | }
53 | }
54 |
55 | // Update the `style` for the container
56 | func setStyle(_ style: [String: Any]?) {
57 | DispatchQueue.main.async {
58 | self.viewModel.style = style ?? ["backgroundColor": "transparent"]
59 | }
60 | }
61 |
62 | // Update the `numberStyle` for the number text
63 | func setTextStyle(_ textStyle: [String: Any]?) {
64 | DispatchQueue.main.async {
65 | self.viewModel.numberStyle = textStyle
66 | }
67 | }
68 |
69 | // Update the `unitStyle` for the unit text
70 | func setUnitStyle(_ unitStyle: [String: Any]?) {
71 | DispatchQueue.main.async {
72 | self.viewModel.unitStyle = unitStyle
73 | }
74 | }
75 | }
76 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "@quanna/react-native-animated-number",
3 | "version": "0.1.0",
4 | "description": "A React Native component for displaying animated numbers, written in SwiftUI for seamless and super-smooth animations when changing numeric values.",
5 | "main": "build/index.js",
6 | "types": "build/index.d.ts",
7 | "scripts": {
8 | "build": "expo-module build",
9 | "clean": "expo-module clean",
10 | "lint": "expo-module lint",
11 | "test": "expo-module test",
12 | "prepare": "expo-module prepare",
13 | "prepublishOnly": "expo-module prepublishOnly",
14 | "expo-module": "expo-module",
15 | "open:ios": "xed example/ios",
16 | "open:android": "open -a \"Android Studio\" example/android"
17 | },
18 | "keywords": [
19 | "react-native",
20 | "expo",
21 | "@quanna",
22 | "@quanna/react-native-animated-number",
23 | "react-native-animated-number",
24 | "ReactNativeAnimatedNumber"
25 | ],
26 | "repository": "https://github.com/anhquan291/react-native-animated-number",
27 | "bugs": {
28 | "url": "https://github.com/anhquan291/react-native-animated-number/issues"
29 | },
30 | "author": "Quan Nguyen (anhquan291)",
31 | "license": "MIT",
32 | "homepage": "https://github.com/anhquan291/react-native-animated-number#readme",
33 | "dependencies": {},
34 | "devDependencies": {
35 | "@types/react": "~18.3.12",
36 | "expo-module-scripts": "^4.0.3",
37 | "expo": "~52.0.0",
38 | "react-native": "0.76.0"
39 | },
40 | "peerDependencies": {
41 | "expo": "*",
42 | "react": "*",
43 | "react-native": "*"
44 | }
45 | }
46 |
--------------------------------------------------------------------------------
/src/ReactNativeAnimatedNumber.types.ts:
--------------------------------------------------------------------------------
1 | import type { StyleProp, TextStyle, ViewStyle } from "react-native";
2 |
3 | export type ReactNativeAnimatedNumberViewProps = {
4 | /**
5 | * The number to be displayed. This can be positive or negative.
6 | */
7 | number: number;
8 |
9 | /**
10 | * A flag indicating whether numbers should display with decimal places.
11 | *
12 | * - `true`: Shows numbers with decimals (e.g., 1.0).
13 | * - `false`: Shows numbers without decimals (e.g., 1).
14 | */
15 | displayDecimal?: boolean;
16 | /**
17 | * The unit to display alongside the number (e.g., %, lbs, kg).
18 | */
19 | unit?: string;
20 |
21 | /**
22 | * Style applied to the outer container that wraps the number and unit.
23 | */
24 | style?: StyleProp;
25 |
26 | /**
27 | * Style applied to the text displaying the number.
28 | */
29 | numberStyle?: StyleProp;
30 |
31 | /**
32 | * Style applied to the text displaying the unit.
33 | */
34 | unitStyle?: StyleProp;
35 | };
36 |
--------------------------------------------------------------------------------
/src/ReactNativeAnimatedNumberModule.ts:
--------------------------------------------------------------------------------
1 | import { requireNativeModule } from "expo";
2 |
3 | declare class ReactNativeAnimatedNumberModule {}
4 |
5 | // This call loads the native module object from the JSI.
6 | export default requireNativeModule(
7 | "ReactNativeAnimatedNumber",
8 | );
9 |
--------------------------------------------------------------------------------
/src/ReactNativeAnimatedNumberView.tsx:
--------------------------------------------------------------------------------
1 | import { requireNativeView } from "expo";
2 | import * as React from "react";
3 |
4 | import { ReactNativeAnimatedNumberViewProps } from "./ReactNativeAnimatedNumber.types";
5 |
6 | const NativeView: React.ComponentType =
7 | requireNativeView("ReactNativeAnimatedNumber");
8 |
9 | export default function ReactNativeAnimatedNumberView(
10 | props: ReactNativeAnimatedNumberViewProps,
11 | ) {
12 | return ;
13 | }
14 |
--------------------------------------------------------------------------------
/src/index.ts:
--------------------------------------------------------------------------------
1 | // Reexport the native module. On web, it will be resolved to ReactNativeAnimatedNumberModule.web.ts
2 | // and on native platforms to ReactNativeAnimatedNumberModule.ts
3 | export { default } from './ReactNativeAnimatedNumberModule';
4 | export { default as ReactNativeAnimatedNumberView } from './ReactNativeAnimatedNumberView';
5 | export * from './ReactNativeAnimatedNumber.types';
6 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | // @generated by expo-module-scripts
2 | {
3 | "extends": "expo-module-scripts/tsconfig.base",
4 | "compilerOptions": {
5 | "outDir": "./build"
6 | },
7 | "include": ["./src"],
8 | "exclude": ["**/__mocks__/*", "**/__tests__/*", "**/__rsc_tests__/*"]
9 | }
10 |
--------------------------------------------------------------------------------