diff --git a/samples/react-native/src/App.tsx b/samples/react-native/src/App.tsx index 223adfb5e8..2a22ea85c7 100644 --- a/samples/react-native/src/App.tsx +++ b/samples/react-native/src/App.tsx @@ -239,6 +239,10 @@ function BottomTabs() { } function RunningIndicator() { + if (Platform.OS !== 'android' && Platform.OS !== 'ios') { + return null; + } + const sv = useSharedValue(0); React.useEffect(() => {