Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix for macos sample
  • Loading branch information
krystofwoldrich committed Jun 19, 2024
commit d83333ab70559025307b0207820f5933d7757c19
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