Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
497 changes: 497 additions & 0 deletions apps/common-app/src/demos/Crossfade/Crossfade.tsx

Large diffs are not rendered by default.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
9 changes: 9 additions & 0 deletions apps/common-app/src/demos/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { icons } from 'lucide-react-native';

import PedalBoard from './PedalBoard/PedalBoard';
import Record from './Record/Record';
import Crossfade from './Crossfade/Crossfade';

interface SimplifiedIconProps {
color?: string;
Expand Down Expand Up @@ -33,4 +34,12 @@ export const demos: DemoScreen[] = [
icon: icons.Guitar,
screen: PedalBoard,
},
{
key: 'Crossfade',
title: 'Crossfade',
subtitle:
'Demonstrates crossfading between two audio files.',
icon: icons.ArrowLeftRight,
screen: Crossfade,
}
] as const;
8 changes: 4 additions & 4 deletions apps/fabric-example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2514,7 +2514,7 @@ EXTERNAL SOURCES:

SPEC CHECKSUMS:
FBLazyVector: e97c19a5a442429d1988f182a1940fb08df514da
hermes-engine: ca0c1d4fe0200e05fedd8d7c0c283b54cd461436
hermes-engine: 471e81260adadffc041e40c5eea01333addabb53
RCTDeprecation: af44b104091a34482596cd9bd7e8d90c4e9b4bd7
RCTRequired: bb77b070f75f53398ce43c0aaaa58337cebe2bf6
RCTSwiftUI: afc0a0a635860da1040a0b894bfd529da06d7810
Expand All @@ -2523,7 +2523,7 @@ SPEC CHECKSUMS:
React: 1ba7d364ade7d883a1ec055bfc3606f35fdee17b
React-callinvoker: bc2a26f8d84fb01f003fc6de6c9337b64715f95b
React-Core: 7840d3a80b43a95c5e80ef75146bd70925ebab0f
React-Core-prebuilt: e44365cf4785c3aa56ababc9ab204fe8bc6b17d0
React-Core-prebuilt: 6586031f606ff8ab466cac9e8284053a91342881
React-CoreModules: 2eb010400b63b89e53a324ffb3c112e4c7c3ce42
React-cxxreact: a558e92199d26f145afa9e62c4233cf8e7950efe
React-debug: 755200a6e7f5e6e0a40ff8d215493d43cce285fc
Expand Down Expand Up @@ -2553,7 +2553,7 @@ SPEC CHECKSUMS:
React-microtasksnativemodule: d1956f0eec54c619b63a379520fb4c618a55ccb9
react-native-background-timer: 4638ae3bee00320753647900b21260b10587b6f7
react-native-safe-area-context: ae7587b95fb580d1800c5b0b2a7bd48c2868e67a
react-native-skia: 5f68d3c3749bfb4f726e408410b8be5999392cd9
react-native-skia: 9e5b3a8a4ced921df89cb625dd9eb4fb10be1acf
React-NativeModulesApple: 5ba0903927f6b8d335a091700e9fda143980f819
React-networking: 3a4b7f9ed2b2d1c0441beacb79674323a24bcca6
React-oscompat: ff26abf0ae3e3fdbe47b44224571e3fc7226a573
Expand Down Expand Up @@ -2587,7 +2587,7 @@ SPEC CHECKSUMS:
ReactAppDependencyProvider: e96e93b493d8d86eeaee3e590ba0be53f6abe46f
ReactCodegen: f66521b131699d6af0790f10653933b3f1f79a6f
ReactCommon: 07572bf9e687c8a52fbe4a3641e9e3a1a477c78e
ReactNativeDependencies: 3467a1fea6f7a524df13b30430bebcc254d9aee2
ReactNativeDependencies: a5d71d95f2654107eb45e6ece04caba36beac2bd
RNAudioAPI: fa5c075d2fcdb1ad9a695754b38f07c8c3074396
RNGestureHandler: 07de6f059e0ee5744ae9a56feb07ee345338cc31
RNReanimated: d75c81956bf7531fe08ba4390149002ab8bdd127
Expand Down
Loading