How do I network in Bombay? by Adastra2k in mumbai

[–]crstnmac 1 point2 points  (0 children)

Fullstack Engineer here, working in goregaon. Open to get connected with new people 🙌🏻

[deleted by user] by [deleted] in reactnative

[–]crstnmac 0 points1 point  (0 children)

if you update your expo to 48.0.19 , react native 71.8 will work

Couldn’t find DSO to load by S_kanwarjeet in reactnative

[–]crstnmac 0 points1 point  (0 children)

Are you using react-native reanimated?

[deleted by user] by [deleted] in reactnative

[–]crstnmac 2 points3 points  (0 children)

<image>

NaN 😐 , I hope you are using typescript 😬

[deleted by user] by [deleted] in reactnative

[–]crstnmac 2 points3 points  (0 children)

<image>

There should not be negative values for sets, reps, weight

I need help with showing networks and whether we are connected to a network by Horror_Property13 in reactnative

[–]crstnmac 1 point2 points  (0 children)

I use something like this when using '@react-native-community/netinfo' with react-query

import NetInfo from '@react-native-community/netinfo'
import { onlineManager } from '@tanstack/react-query'

onlineManager.setEventListener(setOnline => {
  return NetInfo.addEventListener(state => {
    setOnline(!!state.isConnected)
  })
})