Skip to content

Commit

Permalink
fix for macos sample
Browse files Browse the repository at this point in the history
  • Loading branch information
krystofwoldrich committed Jun 19, 2024
1 parent 6227602 commit d83333a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions samples/react-native/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,10 @@ function BottomTabs() {
}

function RunningIndicator() {
if (Platform.OS !== 'android' && Platform.OS !== 'ios') {
return null;
}

const sv = useSharedValue<number>(0);

React.useEffect(() => {
Expand Down

0 comments on commit d83333a

Please sign in to comment.