Morgan Trudeau

Results 21 comments of Morgan Trudeau

Ya I have changed the `handleContentSizeChange` function in `dist/exports/TextInput`. I want this to happen automatically for all multiline TextInputs in my app. Working for me. Thanks @divonelnc! ``` var handleContentSizeChange...

For anyone needing a temp workaround I made a hook... ``` // hooks.js export const useWebOnScroll = ({ onScroll, onScrollEnd }) => { const lastScrollEvent = useRef(null); const scrollEndTimeout =...

Need more information. It is working for me on same environment. Please include your code showing how you are using the player.

This shows as unhandled for me in bugsnag but it's not a crash. It's because the promise is not returned from js. patch... ``` diff --git a/node_modules/react-native-navigation-bar-color/src/index.js b/node_modules/react-native-navigation-bar-color/src/index.js index eeab32f..edc4ce0...

Btw I am setting opacity of bottomsheet to zero when callbackNode === 1 to workaround this.

I found local notifications were not showing on android after targeting sdk version >30. They changed PendingIntent in Android 12 This patch fixed it for me. ``` diff --git a/node_modules/react-native-push-notification/android/src/main/java/com/dieam/reactnativepushnotification/modules/RNPushNotificationHelper.java...

> This fix creates this issue #2152 > > I think `Build.VERSION.SDK_INT >= Build.VERSION_CODES.M` (M = Android 6) should be changed to `Build.VERSION.SDK_INT > Build.VERSION_CODES.R` (R = Android 11) Yes...

Try this configuration (adding esModule = false)... ``` { test: /\.(png|jpe?g|gif)$/, options: { name: 'static/media/[name].[hash:8].[ext]', esModule: false, scalings: { '@2x': 2, '@3x': 3 }, }, loader: 'react-native-web-image-loader', }; ```

Just ran into this myself. It doesn't take the header into consideration. If headerTransparent = true then the measurement is correct. Tested with react-navigation@7 and react-navigation@6. measureInLayout and measure both...

This happens to me on 12.6.0 almost every time onSnapshot connects to a collection with insufficient permissions.