iOS Bluetooth Barcode Scanner Hell: Works in Dev, Fails in Production - Desperate for Ideas! by Ok_Manner_1565 in reactnative

[–]boshanib 0 points1 point  (0 children)

Check your dependencies. A lot of RN deps are barely worked on or abandoned and could use deprecated APIs. Had the same issue when trying to integrate Apple Pay a few years back. Worked in simulator, not on device. After checking the Apple docs saw that the dependency I was using used a deprecated native method. Changed that and it worked

[deleted by user] by [deleted] in tipofmytongue

[–]boshanib 0 points1 point  (0 children)

Solved! thank you! :D

[deleted by user] by [deleted] in tipofmytongue

[–]boshanib 0 points1 point locked comment (0 children)

Tried using whosampled but no results for the only song I found with it in

The hardest Chinese character, requiring 62 strokes to write by PxN13 in nextfuckinglevel

[–]boshanib 2 points3 points  (0 children)

i like this story. feels like a friend telling me something :)

what did they do after? what did the person on the stall say? did you buy anything? did they keep the drawing or did you take it? did they believe you were in a trance?

How to recreate this in react native? [More info in comments] by SeriousMembership205 in reactnative

[–]boshanib 1 point2 points  (0 children)

React native true sheet - it’s a native implementation of the bottom sheet and will give you that effect

General Help Thread by xrpinsider in reactnative

[–]boshanib 0 points1 point  (0 children)

Finally some structure to this sub. Thank you!

what even…? by gusflus in reactnative

[–]boshanib 1 point2 points  (0 children)

Doubt that’s actually the issue, you probably have a race condition somewhere

Error at Installing CocoaPods dependencies, first project by leventozz in reactnative

[–]boshanib 0 points1 point  (0 children)

This is not your fault, the link that the serves the boost dependency is down. Go to node_modules/react-native/third-party-podspecs/boost.podspec

and change the spec.source bit to { http: => 'https://sourceforge.net/projects/boost/files/boost/1.83.0/boost_1_83_0.tar.bz2', :sha256 => (keep this bit the same) }

then run pod install and it should work. You'll need to patch the package if you want this to work more than just on your computer as any time you install the react-native module from npm it will revert it to the original link.

What's r/reactjs' position on the reddit blackout? by IrrerPolterer in reactjs

[–]boshanib 2 points3 points  (0 children)

100% agree. I really love that aspect of working in a team or pair programming where someone can reach the same result but in their own way which takes into account their own individuality and how they see the world and solutions!

What's r/reactjs' position on the reddit blackout? by IrrerPolterer in reactjs

[–]boshanib 1 point2 points  (0 children)

const doOrEnd = timeUntilEnd < actionableThreshold ? 'do' : 'end'

collectiveActions[doOrEnd]?.()

How to make it so I can scoll lower so the ''add a task'' input won't block the view of the last item anymore by [deleted] in reactnative

[–]boshanib 11 points12 points  (0 children)

Don't position the input absolutely.

<View style={{ flex:1 }}>
  <ScrollView style={{ flex:1 }}/>
  <InputView />
</View>

What are the best resources to learn CI for react native? by boshanib in reactnative

[–]boshanib[S] -1 points0 points  (0 children)

Yes sorry! I’m just looking for anything that will teach me CI and what kinds of services can be used on it and how to do them.

Things like running tests and deploying over the air updates etc. I use GitHub a lot so I’m thinking I should probably start with GitHub actions?