├── .buckconfig ├── .eslintrc.js ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .vscode ├── launch.json └── settings.json ├── .watchmanconfig ├── LICENSE.md ├── README.md ├── TODO.md ├── android ├── app │ ├── _BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── fluidtransitions │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── babel.config.js ├── index.js ├── ios ├── FluidTransitions.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── FluidTransitions-tvOS.xcscheme │ │ └── FluidTransitions.xcscheme ├── FluidTransitions.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── FluidTransitions │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── AppIcon-1024px.png │ │ │ ├── AppIcon-120px-40pt@3x.png │ │ │ ├── AppIcon-120px-60pt@2x.png │ │ │ ├── AppIcon-180px-60pt@3x.png │ │ │ ├── AppIcon-29px-29pt@1x.png │ │ │ ├── AppIcon-40px-20pt@2x.png │ │ │ ├── AppIcon-58px-29pt@2x.png │ │ │ ├── AppIcon-60px-20pt@3x.png │ │ │ ├── AppIcon-80px-40pt@2x.png │ │ │ ├── AppIcon-87px-29pt@3x.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── Logo.imageset │ │ │ ├── Contents.json │ │ │ ├── logo-symbol-text@1x.png │ │ │ ├── logo-symbol-text@2x.png │ │ │ └── logo-symbol-text@3x.png │ ├── Info.plist │ └── main.m ├── Podfile └── Podfile.lock ├── metro.config.js ├── package.json ├── src ├── App.tsx ├── examples │ ├── AppStore │ │ └── index.tsx │ ├── Assets │ │ ├── logo-symbol-text@1x.png │ │ ├── logo-symbol-text@2x.png │ │ └── logo-symbol-text@3x.png │ ├── Children │ │ ├── bubble.tsx │ │ └── index.tsx │ ├── Dragging │ │ └── index.tsx │ ├── Driver │ │ ├── MovingButton.tsx │ │ └── index.tsx │ ├── Easings │ │ └── index.tsx │ ├── Flutter │ │ ├── assets │ │ │ ├── earrings.png │ │ │ ├── hat.png │ │ │ ├── icon.png │ │ │ ├── splash.png │ │ │ ├── sunnies.png │ │ │ └── table.png │ │ ├── components │ │ │ ├── Cursor.tsx │ │ │ ├── Header.tsx │ │ │ ├── Headers.tsx │ │ │ ├── Label.tsx │ │ │ ├── MockCard.tsx │ │ │ ├── MockEntry.tsx │ │ │ ├── Model.ts │ │ │ ├── Pages.tsx │ │ │ ├── Sections.tsx │ │ │ └── index.tsx │ │ └── index.tsx │ ├── HomeScreen.tsx │ ├── HomeScreenButton.tsx │ ├── Interactions │ │ ├── AnimatedNumber.tsx │ │ ├── CallButton.tsx │ │ ├── FloatingLabel.tsx │ │ ├── InteractionContainer.tsx │ │ ├── LikeHeart.tsx │ │ ├── LoginButton.tsx │ │ └── index.tsx │ ├── Interpolate │ │ └── index.tsx │ ├── Lists │ │ └── index.tsx │ ├── Maze │ │ ├── MazeItem.tsx │ │ ├── index.tsx │ │ └── styles.ts │ ├── Navigation │ │ ├── box.tsx │ │ ├── bubble.tsx │ │ ├── button.tsx │ │ ├── index.tsx │ │ └── screen.tsx │ ├── Parallax │ │ └── index.tsx │ ├── Repeating │ │ ├── Repeater.tsx │ │ └── index.tsx │ ├── SVG │ │ └── index.tsx │ ├── Stagger │ │ └── index.tsx │ ├── Style │ │ └── index.tsx │ ├── Styles │ │ ├── EMailFolder.tsx │ │ ├── MovingButton.tsx │ │ ├── Pager.tsx │ │ ├── ProgressBar.tsx │ │ └── index.tsx │ ├── Text │ │ ├── AdCard.tsx │ │ ├── Ticker.tsx │ │ └── index.tsx │ ├── colors.ts │ ├── helpers.ts │ ├── index.tsx │ └── scratch.tsx ├── packages │ ├── animated │ │ ├── index.ts │ │ ├── index.web.ts │ │ ├── package.json │ │ ├── src │ │ │ ├── Types │ │ │ │ ├── IAnimationNode.ts │ │ │ │ ├── IAnimationProvider.ts │ │ │ │ ├── IAnimationValue.ts │ │ │ │ ├── Interpolation.ts │ │ │ │ └── index.ts │ │ │ ├── react-native-animated │ │ │ │ ├── Implementation │ │ │ │ │ ├── ColorNode.ts │ │ │ │ │ ├── RadNode.ts │ │ │ │ │ ├── bezier.ts │ │ │ │ │ ├── createValue.ts │ │ │ │ │ ├── getColorDisplayValue.ts │ │ │ │ │ ├── getColorDisplayValue.web.ts │ │ │ │ │ ├── getProcessedColor.ts │ │ │ │ │ ├── getProcessedColor.web.ts │ │ │ │ │ ├── getProcessedRotation.ts │ │ │ │ │ ├── normalizeColor.ts │ │ │ │ │ ├── runTiming.ts │ │ │ │ │ └── utils.ts │ │ │ │ ├── __tests__ │ │ │ │ │ ├── assign.spec.ts │ │ │ │ │ ├── bezier.spec.ts │ │ │ │ │ ├── block.spec.ts │ │ │ │ │ ├── conditions.spec.ts │ │ │ │ │ ├── operators.spec.ts │ │ │ │ │ └── proc.spec.ts │ │ │ │ └── index.ts │ │ │ └── react-native-reanimated │ │ │ │ ├── Implementation │ │ │ │ ├── createValue.ts │ │ │ │ ├── getColorFromString.ts │ │ │ │ ├── getDegreesInRadian.ts │ │ │ │ ├── getProcessedColor.ts │ │ │ │ ├── getProcessedRotation.ts │ │ │ │ ├── runTiming.ts │ │ │ │ └── utils.ts │ │ │ │ ├── index.native.ts │ │ │ │ └── index.web.ts │ │ └── tsconfig.json │ ├── gestures │ │ ├── index.ts │ │ ├── package.json │ │ ├── src │ │ │ └── index.tsx │ │ └── tsconfig.json │ ├── navigation │ │ ├── index.ts │ │ ├── package.json │ │ ├── src │ │ │ ├── Functions │ │ │ │ ├── getNavigationStates.ts │ │ │ │ ├── index.ts │ │ │ │ └── safeGetState.ts │ │ │ ├── Hooks │ │ │ │ ├── index.ts │ │ │ │ ├── useNavigationDirection.ts │ │ │ │ ├── useNavigationStates.ts │ │ │ │ └── useVisibilityStyle.ts │ │ │ ├── Transitions │ │ │ │ ├── createNavigationTransition.ts │ │ │ │ ├── index.ts │ │ │ │ ├── useNavigationTransition.ts │ │ │ │ └── useTranslateTransitions.ts │ │ │ ├── createFluidStackNavigator.tsx │ │ │ ├── hooks │ │ │ │ ├── useCurrentValue.ts │ │ │ │ ├── useDriverContext.ts │ │ │ │ └── useNavigationState.ts │ │ │ ├── index.tsx │ │ │ ├── navigationContainer.tsx │ │ │ └── types.ts │ │ └── tsconfig.json │ ├── svg │ │ ├── index.ts │ │ ├── package.json │ │ ├── src │ │ │ └── Components │ │ │ │ └── index.ts │ │ └── tsconfig.json │ └── transitions │ │ ├── index.ts │ │ ├── package.json │ │ ├── src │ │ ├── Animation │ │ │ ├── Builder │ │ │ │ ├── __tests__ │ │ │ │ │ └── getInterpolationTree.spec.ts │ │ │ │ ├── dumpTree.ts │ │ │ │ ├── getAnimationOnEnd.ts │ │ │ │ ├── getInterpolationTree.ts │ │ │ │ ├── index.ts │ │ │ │ └── types.ts │ │ │ ├── Functions │ │ │ │ ├── createProc.ts │ │ │ │ ├── easing.ts │ │ │ │ ├── getResolvedAnimation.ts │ │ │ │ ├── index.ts │ │ │ │ └── spring.ts │ │ │ ├── Runner │ │ │ │ ├── Functions │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── createAnimationNode.spec.ts │ │ │ │ │ │ ├── easing.spec.ts │ │ │ │ │ │ ├── interpolate.spec.ts │ │ │ │ │ │ ├── interpolateColor.spec.ts │ │ │ │ │ │ └── normalize.spec.ts │ │ │ │ │ ├── createAnimationNode.ts │ │ │ │ │ ├── createInterpolationNode.ts │ │ │ │ │ ├── getExtrapolationValue.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── interpolate.ts │ │ │ │ │ ├── interpolateColor.ts │ │ │ │ │ ├── interpolateValue.ts │ │ │ │ │ ├── lifecycle.ts │ │ │ │ │ ├── normalize.ts │ │ │ │ │ ├── setAnimationValue.ts │ │ │ │ │ └── setInterpolationValue.ts │ │ │ │ ├── addAnimations.ts │ │ │ │ ├── addInterpolation.ts │ │ │ │ ├── index.ts │ │ │ │ └── interpolationStorage.ts │ │ │ ├── commitAnimations.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── Components │ │ │ ├── FluidTransitions │ │ │ │ ├── index.ts │ │ │ │ ├── useAnimationContext.ts │ │ │ │ ├── useConfiguration.tsx │ │ │ │ ├── useInitialStyle.ts │ │ │ │ ├── useInterpolatorConfig.ts │ │ │ │ ├── useInterpolatorContext.tsx │ │ │ │ ├── useLayout.ts │ │ │ │ ├── useMountUpdate.ts │ │ │ │ ├── useOnConfig.ts │ │ │ │ ├── usePropContext.ts │ │ │ │ ├── useSharedInterpolation.tsx │ │ │ │ ├── useStateChanges.ts │ │ │ │ ├── useStyleContext.ts │ │ │ │ ├── useTouchable.tsx │ │ │ │ ├── useTransitionItems.tsx │ │ │ │ ├── useValueContext.ts │ │ │ │ ├── useValueInterpolation.ts │ │ │ │ ├── useWhenConfig.ts │ │ │ │ └── withFluidTransitions.tsx │ │ │ ├── Types │ │ │ │ ├── AnimatedStyleKeys.ts │ │ │ │ ├── AnimationContext.ts │ │ │ │ ├── AnimationInfo.ts │ │ │ │ ├── ConfigurationContext.ts │ │ │ │ ├── DriverContext.ts │ │ │ │ ├── Easing.ts │ │ │ │ ├── InterpolationTypes.ts │ │ │ │ ├── InterpolatorContext.ts │ │ │ │ ├── SharedContext.ts │ │ │ │ ├── StateContext.ts │ │ │ │ ├── StyleTypes.ts │ │ │ │ ├── TransitionItem.ts │ │ │ │ ├── TransitionItemContext.ts │ │ │ │ ├── ValueContextType.ts │ │ │ │ └── index.ts │ │ │ └── index.tsx │ │ ├── Configuration │ │ │ ├── Types.ts │ │ │ ├── __tests__ │ │ │ │ ├── mergeConfig.spec.ts │ │ │ │ └── validateConfig.spec.ts │ │ │ ├── animationType.ts │ │ │ ├── childAnimation.ts │ │ │ ├── createConfig.ts │ │ │ ├── createState.ts │ │ │ ├── index.ts │ │ │ ├── interpolation.ts │ │ │ ├── interpolationValue.ts │ │ │ ├── mergeConfigs.ts │ │ │ ├── onState.ts │ │ │ ├── validateConfig.ts │ │ │ └── whenState.ts │ │ ├── Hooks │ │ │ ├── index.ts │ │ │ ├── useFluidConfig.ts │ │ │ ├── useFluidState.ts │ │ │ ├── useForceUpdate.ts │ │ │ └── useLog.ts │ │ ├── Props │ │ │ ├── getAnimatedProps.ts │ │ │ └── index.ts │ │ ├── Shared │ │ │ ├── createSharedInterpolation.ts │ │ │ ├── getSharedInterpolationMetrics.ts │ │ │ ├── getSharedInterpolationStyles.ts │ │ │ ├── getStates.ts │ │ │ ├── index.ts │ │ │ └── setupSharedInterpolation.ts │ │ ├── Styles │ │ │ ├── __tests__ │ │ │ │ ├── getStyleValueFromKey.spec.ts │ │ │ │ └── setStyleValueForKey.spec.ts │ │ │ ├── getCalculatedStyle.ts │ │ │ ├── getMergedStyles.ts │ │ │ ├── getResolvedStyle.ts │ │ │ ├── getStyleInfo.ts │ │ │ ├── getStyleKeys.ts │ │ │ ├── getStyleValueFromKey.ts │ │ │ └── setStyleValueForKey.ts │ │ ├── Types │ │ │ ├── AnimatedValueType.ts │ │ │ ├── ComponentProps.ts │ │ │ ├── Constants.ts │ │ │ ├── FluidException.ts │ │ │ ├── LogTypes.ts │ │ │ ├── MetricTypes.ts │ │ │ └── index.ts │ │ ├── Utilities │ │ │ ├── Springs.ts │ │ │ ├── Timings.ts │ │ │ ├── index.ts │ │ │ └── measureItem.ts │ │ ├── Values │ │ │ ├── __tests__ │ │ │ │ ├── getInputRange.spec.ts │ │ │ │ └── getOutputRange.spec.ts │ │ │ ├── addValue.ts │ │ │ ├── createValue.ts │ │ │ ├── getChangedKeys.ts │ │ │ ├── getInputRange.ts │ │ │ ├── getKeys.ts │ │ │ ├── getOutputRange.ts │ │ │ ├── getValueFromKey.ts │ │ │ ├── index.ts │ │ │ └── setValueForKey.ts │ │ └── config.ts │ │ └── tsconfig.json └── web │ ├── .gitignore │ ├── config-overrides.js │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt │ ├── src │ ├── App.tsx │ ├── Easings │ │ └── index.tsx │ ├── Interpolate │ │ └── index.tsx │ ├── Maze │ │ ├── MazeItem.tsx │ │ ├── index.tsx │ │ └── styles.ts │ ├── Stagger │ │ └── index.tsx │ ├── Styles │ │ ├── MovingButton.tsx │ │ ├── Pager.tsx │ │ ├── ProgressBar.tsx │ │ └── index.tsx │ ├── Text │ │ ├── AdCard.tsx │ │ ├── Ticker.tsx │ │ └── index.tsx │ ├── colors.ts │ ├── helpers.ts │ ├── index.tsx │ ├── react-app-env.d.ts │ └── serviceWorker.ts │ ├── tsconfig.json │ └── yarn.lock ├── tsconfig.json └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/.buckconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/TODO.md -------------------------------------------------------------------------------- /android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/android/app/_BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/fluidtransitions/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/android/app/src/main/java/com/fluidtransitions/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/fluidtransitions/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/android/app/src/main/java/com/fluidtransitions/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/index.js -------------------------------------------------------------------------------- /ios/FluidTransitions.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/ios/FluidTransitions.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/FluidTransitions.xcodeproj/xcshareddata/xcschemes/FluidTransitions-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/ios/FluidTransitions.xcodeproj/xcshareddata/xcschemes/FluidTransitions-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/FluidTransitions.xcodeproj/xcshareddata/xcschemes/FluidTransitions.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/ios/FluidTransitions.xcodeproj/xcshareddata/xcschemes/FluidTransitions.xcscheme -------------------------------------------------------------------------------- /ios/FluidTransitions.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/ios/FluidTransitions.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/FluidTransitions.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/ios/FluidTransitions.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/FluidTransitions/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/ios/FluidTransitions/AppDelegate.h -------------------------------------------------------------------------------- /ios/FluidTransitions/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/ios/FluidTransitions/AppDelegate.m -------------------------------------------------------------------------------- /ios/FluidTransitions/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/ios/FluidTransitions/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/FluidTransitions/Images.xcassets/AppIcon.appiconset/AppIcon-1024px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/ios/FluidTransitions/Images.xcassets/AppIcon.appiconset/AppIcon-1024px.png -------------------------------------------------------------------------------- /ios/FluidTransitions/Images.xcassets/AppIcon.appiconset/AppIcon-120px-40pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/ios/FluidTransitions/Images.xcassets/AppIcon.appiconset/AppIcon-120px-40pt@3x.png -------------------------------------------------------------------------------- /ios/FluidTransitions/Images.xcassets/AppIcon.appiconset/AppIcon-120px-60pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/ios/FluidTransitions/Images.xcassets/AppIcon.appiconset/AppIcon-120px-60pt@2x.png -------------------------------------------------------------------------------- /ios/FluidTransitions/Images.xcassets/AppIcon.appiconset/AppIcon-180px-60pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/ios/FluidTransitions/Images.xcassets/AppIcon.appiconset/AppIcon-180px-60pt@3x.png -------------------------------------------------------------------------------- /ios/FluidTransitions/Images.xcassets/AppIcon.appiconset/AppIcon-29px-29pt@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/ios/FluidTransitions/Images.xcassets/AppIcon.appiconset/AppIcon-29px-29pt@1x.png -------------------------------------------------------------------------------- /ios/FluidTransitions/Images.xcassets/AppIcon.appiconset/AppIcon-40px-20pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/ios/FluidTransitions/Images.xcassets/AppIcon.appiconset/AppIcon-40px-20pt@2x.png -------------------------------------------------------------------------------- /ios/FluidTransitions/Images.xcassets/AppIcon.appiconset/AppIcon-58px-29pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/ios/FluidTransitions/Images.xcassets/AppIcon.appiconset/AppIcon-58px-29pt@2x.png -------------------------------------------------------------------------------- /ios/FluidTransitions/Images.xcassets/AppIcon.appiconset/AppIcon-60px-20pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/ios/FluidTransitions/Images.xcassets/AppIcon.appiconset/AppIcon-60px-20pt@3x.png -------------------------------------------------------------------------------- /ios/FluidTransitions/Images.xcassets/AppIcon.appiconset/AppIcon-80px-40pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/ios/FluidTransitions/Images.xcassets/AppIcon.appiconset/AppIcon-80px-40pt@2x.png -------------------------------------------------------------------------------- /ios/FluidTransitions/Images.xcassets/AppIcon.appiconset/AppIcon-87px-29pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/ios/FluidTransitions/Images.xcassets/AppIcon.appiconset/AppIcon-87px-29pt@3x.png -------------------------------------------------------------------------------- /ios/FluidTransitions/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/ios/FluidTransitions/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/FluidTransitions/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/ios/FluidTransitions/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/FluidTransitions/Images.xcassets/Logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/ios/FluidTransitions/Images.xcassets/Logo.imageset/Contents.json -------------------------------------------------------------------------------- /ios/FluidTransitions/Images.xcassets/Logo.imageset/logo-symbol-text@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/ios/FluidTransitions/Images.xcassets/Logo.imageset/logo-symbol-text@1x.png -------------------------------------------------------------------------------- /ios/FluidTransitions/Images.xcassets/Logo.imageset/logo-symbol-text@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/ios/FluidTransitions/Images.xcassets/Logo.imageset/logo-symbol-text@2x.png -------------------------------------------------------------------------------- /ios/FluidTransitions/Images.xcassets/Logo.imageset/logo-symbol-text@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/ios/FluidTransitions/Images.xcassets/Logo.imageset/logo-symbol-text@3x.png -------------------------------------------------------------------------------- /ios/FluidTransitions/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/ios/FluidTransitions/Info.plist -------------------------------------------------------------------------------- /ios/FluidTransitions/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/ios/FluidTransitions/main.m -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/package.json -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/examples/AppStore/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/AppStore/index.tsx -------------------------------------------------------------------------------- /src/examples/Assets/logo-symbol-text@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Assets/logo-symbol-text@1x.png -------------------------------------------------------------------------------- /src/examples/Assets/logo-symbol-text@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Assets/logo-symbol-text@2x.png -------------------------------------------------------------------------------- /src/examples/Assets/logo-symbol-text@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Assets/logo-symbol-text@3x.png -------------------------------------------------------------------------------- /src/examples/Children/bubble.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Children/bubble.tsx -------------------------------------------------------------------------------- /src/examples/Children/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Children/index.tsx -------------------------------------------------------------------------------- /src/examples/Dragging/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Dragging/index.tsx -------------------------------------------------------------------------------- /src/examples/Driver/MovingButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Driver/MovingButton.tsx -------------------------------------------------------------------------------- /src/examples/Driver/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Driver/index.tsx -------------------------------------------------------------------------------- /src/examples/Easings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Easings/index.tsx -------------------------------------------------------------------------------- /src/examples/Flutter/assets/earrings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Flutter/assets/earrings.png -------------------------------------------------------------------------------- /src/examples/Flutter/assets/hat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Flutter/assets/hat.png -------------------------------------------------------------------------------- /src/examples/Flutter/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Flutter/assets/icon.png -------------------------------------------------------------------------------- /src/examples/Flutter/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Flutter/assets/splash.png -------------------------------------------------------------------------------- /src/examples/Flutter/assets/sunnies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Flutter/assets/sunnies.png -------------------------------------------------------------------------------- /src/examples/Flutter/assets/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Flutter/assets/table.png -------------------------------------------------------------------------------- /src/examples/Flutter/components/Cursor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Flutter/components/Cursor.tsx -------------------------------------------------------------------------------- /src/examples/Flutter/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Flutter/components/Header.tsx -------------------------------------------------------------------------------- /src/examples/Flutter/components/Headers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Flutter/components/Headers.tsx -------------------------------------------------------------------------------- /src/examples/Flutter/components/Label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Flutter/components/Label.tsx -------------------------------------------------------------------------------- /src/examples/Flutter/components/MockCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Flutter/components/MockCard.tsx -------------------------------------------------------------------------------- /src/examples/Flutter/components/MockEntry.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Flutter/components/MockEntry.tsx -------------------------------------------------------------------------------- /src/examples/Flutter/components/Model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Flutter/components/Model.ts -------------------------------------------------------------------------------- /src/examples/Flutter/components/Pages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Flutter/components/Pages.tsx -------------------------------------------------------------------------------- /src/examples/Flutter/components/Sections.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Flutter/components/Sections.tsx -------------------------------------------------------------------------------- /src/examples/Flutter/components/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Flutter/components/index.tsx -------------------------------------------------------------------------------- /src/examples/Flutter/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Flutter/index.tsx -------------------------------------------------------------------------------- /src/examples/HomeScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/HomeScreen.tsx -------------------------------------------------------------------------------- /src/examples/HomeScreenButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/HomeScreenButton.tsx -------------------------------------------------------------------------------- /src/examples/Interactions/AnimatedNumber.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Interactions/AnimatedNumber.tsx -------------------------------------------------------------------------------- /src/examples/Interactions/CallButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Interactions/CallButton.tsx -------------------------------------------------------------------------------- /src/examples/Interactions/FloatingLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Interactions/FloatingLabel.tsx -------------------------------------------------------------------------------- /src/examples/Interactions/InteractionContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Interactions/InteractionContainer.tsx -------------------------------------------------------------------------------- /src/examples/Interactions/LikeHeart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Interactions/LikeHeart.tsx -------------------------------------------------------------------------------- /src/examples/Interactions/LoginButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Interactions/LoginButton.tsx -------------------------------------------------------------------------------- /src/examples/Interactions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Interactions/index.tsx -------------------------------------------------------------------------------- /src/examples/Interpolate/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Interpolate/index.tsx -------------------------------------------------------------------------------- /src/examples/Lists/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Lists/index.tsx -------------------------------------------------------------------------------- /src/examples/Maze/MazeItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Maze/MazeItem.tsx -------------------------------------------------------------------------------- /src/examples/Maze/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Maze/index.tsx -------------------------------------------------------------------------------- /src/examples/Maze/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Maze/styles.ts -------------------------------------------------------------------------------- /src/examples/Navigation/box.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Navigation/box.tsx -------------------------------------------------------------------------------- /src/examples/Navigation/bubble.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Navigation/bubble.tsx -------------------------------------------------------------------------------- /src/examples/Navigation/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Navigation/button.tsx -------------------------------------------------------------------------------- /src/examples/Navigation/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Navigation/index.tsx -------------------------------------------------------------------------------- /src/examples/Navigation/screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Navigation/screen.tsx -------------------------------------------------------------------------------- /src/examples/Parallax/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Parallax/index.tsx -------------------------------------------------------------------------------- /src/examples/Repeating/Repeater.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Repeating/Repeater.tsx -------------------------------------------------------------------------------- /src/examples/Repeating/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Repeating/index.tsx -------------------------------------------------------------------------------- /src/examples/SVG/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/SVG/index.tsx -------------------------------------------------------------------------------- /src/examples/Stagger/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Stagger/index.tsx -------------------------------------------------------------------------------- /src/examples/Style/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Style/index.tsx -------------------------------------------------------------------------------- /src/examples/Styles/EMailFolder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Styles/EMailFolder.tsx -------------------------------------------------------------------------------- /src/examples/Styles/MovingButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Styles/MovingButton.tsx -------------------------------------------------------------------------------- /src/examples/Styles/Pager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Styles/Pager.tsx -------------------------------------------------------------------------------- /src/examples/Styles/ProgressBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Styles/ProgressBar.tsx -------------------------------------------------------------------------------- /src/examples/Styles/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Styles/index.tsx -------------------------------------------------------------------------------- /src/examples/Text/AdCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Text/AdCard.tsx -------------------------------------------------------------------------------- /src/examples/Text/Ticker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Text/Ticker.tsx -------------------------------------------------------------------------------- /src/examples/Text/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/Text/index.tsx -------------------------------------------------------------------------------- /src/examples/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/colors.ts -------------------------------------------------------------------------------- /src/examples/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/helpers.ts -------------------------------------------------------------------------------- /src/examples/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/index.tsx -------------------------------------------------------------------------------- /src/examples/scratch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/examples/scratch.tsx -------------------------------------------------------------------------------- /src/packages/animated/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/animated/index.ts -------------------------------------------------------------------------------- /src/packages/animated/index.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/animated/index.web.ts -------------------------------------------------------------------------------- /src/packages/animated/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/animated/package.json -------------------------------------------------------------------------------- /src/packages/animated/src/Types/IAnimationNode.ts: -------------------------------------------------------------------------------- 1 | export interface IAnimationNode {} 2 | -------------------------------------------------------------------------------- /src/packages/animated/src/Types/IAnimationProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/animated/src/Types/IAnimationProvider.ts -------------------------------------------------------------------------------- /src/packages/animated/src/Types/IAnimationValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/animated/src/Types/IAnimationValue.ts -------------------------------------------------------------------------------- /src/packages/animated/src/Types/Interpolation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/animated/src/Types/Interpolation.ts -------------------------------------------------------------------------------- /src/packages/animated/src/Types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/animated/src/Types/index.ts -------------------------------------------------------------------------------- /src/packages/animated/src/react-native-animated/Implementation/ColorNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/animated/src/react-native-animated/Implementation/ColorNode.ts -------------------------------------------------------------------------------- /src/packages/animated/src/react-native-animated/Implementation/RadNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/animated/src/react-native-animated/Implementation/RadNode.ts -------------------------------------------------------------------------------- /src/packages/animated/src/react-native-animated/Implementation/bezier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/animated/src/react-native-animated/Implementation/bezier.ts -------------------------------------------------------------------------------- /src/packages/animated/src/react-native-animated/Implementation/createValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/animated/src/react-native-animated/Implementation/createValue.ts -------------------------------------------------------------------------------- /src/packages/animated/src/react-native-animated/Implementation/getColorDisplayValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/animated/src/react-native-animated/Implementation/getColorDisplayValue.ts -------------------------------------------------------------------------------- /src/packages/animated/src/react-native-animated/Implementation/getColorDisplayValue.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/animated/src/react-native-animated/Implementation/getColorDisplayValue.web.ts -------------------------------------------------------------------------------- /src/packages/animated/src/react-native-animated/Implementation/getProcessedColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/animated/src/react-native-animated/Implementation/getProcessedColor.ts -------------------------------------------------------------------------------- /src/packages/animated/src/react-native-animated/Implementation/getProcessedColor.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/animated/src/react-native-animated/Implementation/getProcessedColor.web.ts -------------------------------------------------------------------------------- /src/packages/animated/src/react-native-animated/Implementation/getProcessedRotation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/animated/src/react-native-animated/Implementation/getProcessedRotation.ts -------------------------------------------------------------------------------- /src/packages/animated/src/react-native-animated/Implementation/normalizeColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/animated/src/react-native-animated/Implementation/normalizeColor.ts -------------------------------------------------------------------------------- /src/packages/animated/src/react-native-animated/Implementation/runTiming.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/animated/src/react-native-animated/Implementation/runTiming.ts -------------------------------------------------------------------------------- /src/packages/animated/src/react-native-animated/Implementation/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/animated/src/react-native-animated/Implementation/utils.ts -------------------------------------------------------------------------------- /src/packages/animated/src/react-native-animated/__tests__/assign.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/animated/src/react-native-animated/__tests__/assign.spec.ts -------------------------------------------------------------------------------- /src/packages/animated/src/react-native-animated/__tests__/bezier.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/animated/src/react-native-animated/__tests__/bezier.spec.ts -------------------------------------------------------------------------------- /src/packages/animated/src/react-native-animated/__tests__/block.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/animated/src/react-native-animated/__tests__/block.spec.ts -------------------------------------------------------------------------------- /src/packages/animated/src/react-native-animated/__tests__/conditions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/animated/src/react-native-animated/__tests__/conditions.spec.ts -------------------------------------------------------------------------------- /src/packages/animated/src/react-native-animated/__tests__/operators.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/animated/src/react-native-animated/__tests__/operators.spec.ts -------------------------------------------------------------------------------- /src/packages/animated/src/react-native-animated/__tests__/proc.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/animated/src/react-native-animated/__tests__/proc.spec.ts -------------------------------------------------------------------------------- /src/packages/animated/src/react-native-animated/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/animated/src/react-native-animated/index.ts -------------------------------------------------------------------------------- /src/packages/animated/src/react-native-reanimated/Implementation/createValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/animated/src/react-native-reanimated/Implementation/createValue.ts -------------------------------------------------------------------------------- /src/packages/animated/src/react-native-reanimated/Implementation/getColorFromString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/animated/src/react-native-reanimated/Implementation/getColorFromString.ts -------------------------------------------------------------------------------- /src/packages/animated/src/react-native-reanimated/Implementation/getDegreesInRadian.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/animated/src/react-native-reanimated/Implementation/getDegreesInRadian.ts -------------------------------------------------------------------------------- /src/packages/animated/src/react-native-reanimated/Implementation/getProcessedColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/animated/src/react-native-reanimated/Implementation/getProcessedColor.ts -------------------------------------------------------------------------------- /src/packages/animated/src/react-native-reanimated/Implementation/getProcessedRotation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/animated/src/react-native-reanimated/Implementation/getProcessedRotation.ts -------------------------------------------------------------------------------- /src/packages/animated/src/react-native-reanimated/Implementation/runTiming.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/animated/src/react-native-reanimated/Implementation/runTiming.ts -------------------------------------------------------------------------------- /src/packages/animated/src/react-native-reanimated/Implementation/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/animated/src/react-native-reanimated/Implementation/utils.ts -------------------------------------------------------------------------------- /src/packages/animated/src/react-native-reanimated/index.native.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/animated/src/react-native-reanimated/index.native.ts -------------------------------------------------------------------------------- /src/packages/animated/src/react-native-reanimated/index.web.ts: -------------------------------------------------------------------------------- 1 | export const dummy = 10; 2 | -------------------------------------------------------------------------------- /src/packages/animated/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/animated/tsconfig.json -------------------------------------------------------------------------------- /src/packages/gestures/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/gestures/index.ts -------------------------------------------------------------------------------- /src/packages/gestures/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/gestures/package.json -------------------------------------------------------------------------------- /src/packages/gestures/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/gestures/src/index.tsx -------------------------------------------------------------------------------- /src/packages/gestures/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/gestures/tsconfig.json -------------------------------------------------------------------------------- /src/packages/navigation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/navigation/index.ts -------------------------------------------------------------------------------- /src/packages/navigation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/navigation/package.json -------------------------------------------------------------------------------- /src/packages/navigation/src/Functions/getNavigationStates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/navigation/src/Functions/getNavigationStates.ts -------------------------------------------------------------------------------- /src/packages/navigation/src/Functions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/navigation/src/Functions/index.ts -------------------------------------------------------------------------------- /src/packages/navigation/src/Functions/safeGetState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/navigation/src/Functions/safeGetState.ts -------------------------------------------------------------------------------- /src/packages/navigation/src/Hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/navigation/src/Hooks/index.ts -------------------------------------------------------------------------------- /src/packages/navigation/src/Hooks/useNavigationDirection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/navigation/src/Hooks/useNavigationDirection.ts -------------------------------------------------------------------------------- /src/packages/navigation/src/Hooks/useNavigationStates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/navigation/src/Hooks/useNavigationStates.ts -------------------------------------------------------------------------------- /src/packages/navigation/src/Hooks/useVisibilityStyle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/navigation/src/Hooks/useVisibilityStyle.ts -------------------------------------------------------------------------------- /src/packages/navigation/src/Transitions/createNavigationTransition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/navigation/src/Transitions/createNavigationTransition.ts -------------------------------------------------------------------------------- /src/packages/navigation/src/Transitions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/navigation/src/Transitions/index.ts -------------------------------------------------------------------------------- /src/packages/navigation/src/Transitions/useNavigationTransition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/navigation/src/Transitions/useNavigationTransition.ts -------------------------------------------------------------------------------- /src/packages/navigation/src/Transitions/useTranslateTransitions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/navigation/src/Transitions/useTranslateTransitions.ts -------------------------------------------------------------------------------- /src/packages/navigation/src/createFluidStackNavigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/navigation/src/createFluidStackNavigator.tsx -------------------------------------------------------------------------------- /src/packages/navigation/src/hooks/useCurrentValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/navigation/src/hooks/useCurrentValue.ts -------------------------------------------------------------------------------- /src/packages/navigation/src/hooks/useDriverContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/navigation/src/hooks/useDriverContext.ts -------------------------------------------------------------------------------- /src/packages/navigation/src/hooks/useNavigationState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/navigation/src/hooks/useNavigationState.ts -------------------------------------------------------------------------------- /src/packages/navigation/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/navigation/src/index.tsx -------------------------------------------------------------------------------- /src/packages/navigation/src/navigationContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/navigation/src/navigationContainer.tsx -------------------------------------------------------------------------------- /src/packages/navigation/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/navigation/src/types.ts -------------------------------------------------------------------------------- /src/packages/navigation/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/navigation/tsconfig.json -------------------------------------------------------------------------------- /src/packages/svg/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/svg/index.ts -------------------------------------------------------------------------------- /src/packages/svg/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/svg/package.json -------------------------------------------------------------------------------- /src/packages/svg/src/Components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/svg/src/Components/index.ts -------------------------------------------------------------------------------- /src/packages/svg/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/svg/tsconfig.json -------------------------------------------------------------------------------- /src/packages/transitions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/index.ts -------------------------------------------------------------------------------- /src/packages/transitions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/package.json -------------------------------------------------------------------------------- /src/packages/transitions/src/Animation/Builder/__tests__/getInterpolationTree.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Animation/Builder/__tests__/getInterpolationTree.spec.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Animation/Builder/dumpTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Animation/Builder/dumpTree.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Animation/Builder/getAnimationOnEnd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Animation/Builder/getAnimationOnEnd.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Animation/Builder/getInterpolationTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Animation/Builder/getInterpolationTree.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Animation/Builder/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Animation/Builder/index.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Animation/Builder/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Animation/Builder/types.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Animation/Functions/createProc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Animation/Functions/createProc.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Animation/Functions/easing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Animation/Functions/easing.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Animation/Functions/getResolvedAnimation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Animation/Functions/getResolvedAnimation.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Animation/Functions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Animation/Functions/index.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Animation/Functions/spring.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Animation/Functions/spring.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Animation/Runner/Functions/__tests__/createAnimationNode.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Animation/Runner/Functions/__tests__/createAnimationNode.spec.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Animation/Runner/Functions/__tests__/easing.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Animation/Runner/Functions/__tests__/easing.spec.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Animation/Runner/Functions/__tests__/interpolate.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Animation/Runner/Functions/__tests__/interpolate.spec.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Animation/Runner/Functions/__tests__/interpolateColor.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Animation/Runner/Functions/__tests__/interpolateColor.spec.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Animation/Runner/Functions/__tests__/normalize.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Animation/Runner/Functions/__tests__/normalize.spec.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Animation/Runner/Functions/createAnimationNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Animation/Runner/Functions/createAnimationNode.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Animation/Runner/Functions/createInterpolationNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Animation/Runner/Functions/createInterpolationNode.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Animation/Runner/Functions/getExtrapolationValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Animation/Runner/Functions/getExtrapolationValue.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Animation/Runner/Functions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Animation/Runner/Functions/index.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Animation/Runner/Functions/interpolate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Animation/Runner/Functions/interpolate.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Animation/Runner/Functions/interpolateColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Animation/Runner/Functions/interpolateColor.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Animation/Runner/Functions/interpolateValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Animation/Runner/Functions/interpolateValue.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Animation/Runner/Functions/lifecycle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Animation/Runner/Functions/lifecycle.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Animation/Runner/Functions/normalize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Animation/Runner/Functions/normalize.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Animation/Runner/Functions/setAnimationValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Animation/Runner/Functions/setAnimationValue.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Animation/Runner/Functions/setInterpolationValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Animation/Runner/Functions/setInterpolationValue.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Animation/Runner/addAnimations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Animation/Runner/addAnimations.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Animation/Runner/addInterpolation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Animation/Runner/addInterpolation.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Animation/Runner/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./addAnimations"; 2 | -------------------------------------------------------------------------------- /src/packages/transitions/src/Animation/Runner/interpolationStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Animation/Runner/interpolationStorage.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Animation/commitAnimations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Animation/commitAnimations.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Animation/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./commitAnimations"; 2 | -------------------------------------------------------------------------------- /src/packages/transitions/src/Animation/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Animation/types.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Components/FluidTransitions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Components/FluidTransitions/index.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Components/FluidTransitions/useAnimationContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Components/FluidTransitions/useAnimationContext.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Components/FluidTransitions/useConfiguration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Components/FluidTransitions/useConfiguration.tsx -------------------------------------------------------------------------------- /src/packages/transitions/src/Components/FluidTransitions/useInitialStyle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Components/FluidTransitions/useInitialStyle.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Components/FluidTransitions/useInterpolatorConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Components/FluidTransitions/useInterpolatorConfig.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Components/FluidTransitions/useInterpolatorContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Components/FluidTransitions/useInterpolatorContext.tsx -------------------------------------------------------------------------------- /src/packages/transitions/src/Components/FluidTransitions/useLayout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Components/FluidTransitions/useLayout.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Components/FluidTransitions/useMountUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Components/FluidTransitions/useMountUpdate.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Components/FluidTransitions/useOnConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Components/FluidTransitions/useOnConfig.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Components/FluidTransitions/usePropContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Components/FluidTransitions/usePropContext.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Components/FluidTransitions/useSharedInterpolation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Components/FluidTransitions/useSharedInterpolation.tsx -------------------------------------------------------------------------------- /src/packages/transitions/src/Components/FluidTransitions/useStateChanges.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Components/FluidTransitions/useStateChanges.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Components/FluidTransitions/useStyleContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Components/FluidTransitions/useStyleContext.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Components/FluidTransitions/useTouchable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Components/FluidTransitions/useTouchable.tsx -------------------------------------------------------------------------------- /src/packages/transitions/src/Components/FluidTransitions/useTransitionItems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Components/FluidTransitions/useTransitionItems.tsx -------------------------------------------------------------------------------- /src/packages/transitions/src/Components/FluidTransitions/useValueContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Components/FluidTransitions/useValueContext.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Components/FluidTransitions/useValueInterpolation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Components/FluidTransitions/useValueInterpolation.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Components/FluidTransitions/useWhenConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Components/FluidTransitions/useWhenConfig.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Components/FluidTransitions/withFluidTransitions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Components/FluidTransitions/withFluidTransitions.tsx -------------------------------------------------------------------------------- /src/packages/transitions/src/Components/Types/AnimatedStyleKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Components/Types/AnimatedStyleKeys.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Components/Types/AnimationContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Components/Types/AnimationContext.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Components/Types/AnimationInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Components/Types/AnimationInfo.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Components/Types/ConfigurationContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Components/Types/ConfigurationContext.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Components/Types/DriverContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Components/Types/DriverContext.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Components/Types/Easing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Components/Types/Easing.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Components/Types/InterpolationTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Components/Types/InterpolationTypes.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Components/Types/InterpolatorContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Components/Types/InterpolatorContext.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Components/Types/SharedContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Components/Types/SharedContext.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Components/Types/StateContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Components/Types/StateContext.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Components/Types/StyleTypes.ts: -------------------------------------------------------------------------------- 1 | export type Style = { [key: string]: any }; 2 | -------------------------------------------------------------------------------- /src/packages/transitions/src/Components/Types/TransitionItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Components/Types/TransitionItem.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Components/Types/TransitionItemContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Components/Types/TransitionItemContext.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Components/Types/ValueContextType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Components/Types/ValueContextType.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Components/Types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Components/Types/index.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Components/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Components/index.tsx -------------------------------------------------------------------------------- /src/packages/transitions/src/Configuration/Types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Configuration/Types.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Configuration/__tests__/mergeConfig.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Configuration/__tests__/mergeConfig.spec.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Configuration/__tests__/validateConfig.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Configuration/__tests__/validateConfig.spec.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Configuration/animationType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Configuration/animationType.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Configuration/childAnimation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Configuration/childAnimation.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Configuration/createConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Configuration/createConfig.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Configuration/createState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Configuration/createState.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Configuration/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Configuration/index.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Configuration/interpolation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Configuration/interpolation.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Configuration/interpolationValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Configuration/interpolationValue.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Configuration/mergeConfigs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Configuration/mergeConfigs.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Configuration/onState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Configuration/onState.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Configuration/validateConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Configuration/validateConfig.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Configuration/whenState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Configuration/whenState.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Hooks/index.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Hooks/useFluidConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Hooks/useFluidConfig.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Hooks/useFluidState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Hooks/useFluidState.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Hooks/useForceUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Hooks/useForceUpdate.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Hooks/useLog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Hooks/useLog.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Props/getAnimatedProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Props/getAnimatedProps.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Props/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./getAnimatedProps"; 2 | -------------------------------------------------------------------------------- /src/packages/transitions/src/Shared/createSharedInterpolation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Shared/createSharedInterpolation.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Shared/getSharedInterpolationMetrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Shared/getSharedInterpolationMetrics.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Shared/getSharedInterpolationStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Shared/getSharedInterpolationStyles.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Shared/getStates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Shared/getStates.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Shared/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Shared/index.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Shared/setupSharedInterpolation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Shared/setupSharedInterpolation.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Styles/__tests__/getStyleValueFromKey.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Styles/__tests__/getStyleValueFromKey.spec.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Styles/__tests__/setStyleValueForKey.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Styles/__tests__/setStyleValueForKey.spec.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Styles/getCalculatedStyle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Styles/getCalculatedStyle.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Styles/getMergedStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Styles/getMergedStyles.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Styles/getResolvedStyle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Styles/getResolvedStyle.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Styles/getStyleInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Styles/getStyleInfo.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Styles/getStyleKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Styles/getStyleKeys.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Styles/getStyleValueFromKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Styles/getStyleValueFromKey.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Styles/setStyleValueForKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Styles/setStyleValueForKey.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Types/AnimatedValueType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Types/AnimatedValueType.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Types/ComponentProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Types/ComponentProps.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Types/Constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Types/Constants.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Types/FluidException.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Types/FluidException.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Types/LogTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Types/LogTypes.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Types/MetricTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Types/MetricTypes.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Types/index.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Utilities/Springs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Utilities/Springs.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Utilities/Timings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Utilities/Timings.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Utilities/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Utilities/index.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Utilities/measureItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Utilities/measureItem.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Values/__tests__/getInputRange.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Values/__tests__/getInputRange.spec.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Values/__tests__/getOutputRange.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Values/__tests__/getOutputRange.spec.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Values/addValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Values/addValue.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Values/createValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Values/createValue.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Values/getChangedKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Values/getChangedKeys.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Values/getInputRange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Values/getInputRange.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Values/getKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Values/getKeys.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Values/getOutputRange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Values/getOutputRange.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Values/getValueFromKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Values/getValueFromKey.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Values/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Values/index.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/Values/setValueForKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/Values/setValueForKey.ts -------------------------------------------------------------------------------- /src/packages/transitions/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/src/config.ts -------------------------------------------------------------------------------- /src/packages/transitions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/packages/transitions/tsconfig.json -------------------------------------------------------------------------------- /src/web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/web/.gitignore -------------------------------------------------------------------------------- /src/web/config-overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/web/config-overrides.js -------------------------------------------------------------------------------- /src/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/web/package.json -------------------------------------------------------------------------------- /src/web/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/web/public/favicon.ico -------------------------------------------------------------------------------- /src/web/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/web/public/index.html -------------------------------------------------------------------------------- /src/web/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/web/public/logo192.png -------------------------------------------------------------------------------- /src/web/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/web/public/logo512.png -------------------------------------------------------------------------------- /src/web/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/web/public/manifest.json -------------------------------------------------------------------------------- /src/web/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/web/public/robots.txt -------------------------------------------------------------------------------- /src/web/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/web/src/App.tsx -------------------------------------------------------------------------------- /src/web/src/Easings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/web/src/Easings/index.tsx -------------------------------------------------------------------------------- /src/web/src/Interpolate/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/web/src/Interpolate/index.tsx -------------------------------------------------------------------------------- /src/web/src/Maze/MazeItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/web/src/Maze/MazeItem.tsx -------------------------------------------------------------------------------- /src/web/src/Maze/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/web/src/Maze/index.tsx -------------------------------------------------------------------------------- /src/web/src/Maze/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/web/src/Maze/styles.ts -------------------------------------------------------------------------------- /src/web/src/Stagger/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/web/src/Stagger/index.tsx -------------------------------------------------------------------------------- /src/web/src/Styles/MovingButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/web/src/Styles/MovingButton.tsx -------------------------------------------------------------------------------- /src/web/src/Styles/Pager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/web/src/Styles/Pager.tsx -------------------------------------------------------------------------------- /src/web/src/Styles/ProgressBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/web/src/Styles/ProgressBar.tsx -------------------------------------------------------------------------------- /src/web/src/Styles/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/web/src/Styles/index.tsx -------------------------------------------------------------------------------- /src/web/src/Text/AdCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/web/src/Text/AdCard.tsx -------------------------------------------------------------------------------- /src/web/src/Text/Ticker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/web/src/Text/Ticker.tsx -------------------------------------------------------------------------------- /src/web/src/Text/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/web/src/Text/index.tsx -------------------------------------------------------------------------------- /src/web/src/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/web/src/colors.ts -------------------------------------------------------------------------------- /src/web/src/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/web/src/helpers.ts -------------------------------------------------------------------------------- /src/web/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/web/src/index.tsx -------------------------------------------------------------------------------- /src/web/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/web/src/serviceWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/web/src/serviceWorker.ts -------------------------------------------------------------------------------- /src/web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/web/tsconfig.json -------------------------------------------------------------------------------- /src/web/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/src/web/yarn.lock -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fram-x/react-native-fluid/HEAD/yarn.lock --------------------------------------------------------------------------------