Skip to content

Commit d83333a

Browse files
fix for macos sample
1 parent 6227602 commit d83333a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

samples/react-native/src/App.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,10 @@ function BottomTabs() {
239239
}
240240

241241
function RunningIndicator() {
242+
if (Platform.OS !== 'android' && Platform.OS !== 'ios') {
243+
return null;
244+
}
245+
242246
const sv = useSharedValue<number>(0);
243247

244248
React.useEffect(() => {

0 commit comments

Comments
 (0)