Austin Johnson

Results 13 comments of Austin Johnson

Tailwind has been great! Thanks for showing some nice tricks.

> Unfortunately, RN 0.74 introduced [breaking change](https://reactnative.dev/blog/2024/04/22/release-0.74#other-breaking-changes) removing "[getJSIModulePackage](https://github.com/facebook/react-native/pull/42059/files#diff-de4b4eeeaab4a88ee88c172f745d4b344c41d4bc7ef46c9389e110f46d45cd85L130)". WatermelonDB needs to support new architecture for JSI to work, as requested in [this issue](https://github.com/Nozbe/WatermelonDB/issues/1769). After that, the plugin can be...

Thank you! @marklawlor could we please get this?

> it not work for me. Just do it manually then like me const styles = StyleSheet.create({ defaultShadow: { boxShadow: '0px 0px 2px 0px rgba(111, 182, 134, 0.3)', }, focusedShadow:...

Worked once I placed the useDrizzleStudio where I create my context for react query :) Thanks everyone!

> Hi all, I thought about different idea. So I have removed the old code related to new arch. And it worked as expected on RN 076.x: > > diff...

> # 🍉 WatermelonDB Expo Plugin Resolution > Hey [@rohankm](https://github.com/rohankm), > > Here’s what we’ve done to resolve the issue: > > ## ✅ Summary of Fix > We’ve removed...

Thank you! I made a release if you don't want to patch like me ```ts pnpm add react-native-gzip-new-architecture or using npm npm install react-native-gzip-new-architecture ```

```ts ShakeDetector({ onShake: () => { if (appIsReady) { console.log('Shake detected!'); Sentry.showFeedbackWidget(); } }, sensitivity: 'medium', }); ``` ```ts import { useEffect, useRef } from 'react'; import { EventSubscription }...

Thank you!!