socialcode-rob1
socialcode-rob1
It provides an error callback when attempting to cancel. You need to catch the error and look for the cancel code and handle accordingly. example ``` .catch((err) => { if...
To work around the issue, I've implemented this plugin https://github.com/GeKorm/webpack-permissions-plugin It executes during the 'done' phase in the webpack lifecycle.
Will this make it into next release? Any thoughts about supporting Android?
One option is to use a HEIC converter prior to resizing. ```javascript if (response.filename && response.filename.endsWith('HEIC')) { RNHeicConverter.convert({path: response.sourceURL}).then((converted) => { // ... image resizer logic }); } else if...
I'm running into the same issue. Works with Buy/Sell but not Services. Would it be worth it to put some error handling or warning into the CLI on post/report to...
I'm seeing the same issue. iOS simulator: iPhone 13 (iOS 15.5) react-native-filer-viewer: 2.1.5 **Info** ``` System: OS: macOS 12.3.1 CPU: (8) arm64 Apple M1 Memory: 110.05 MB / 16.00 GB...
Same issue. Thank you for the insight! I can confirm it also affected Android 9. Android 11+ it works fine. Side note: Emulators of any version are unable to reproduce...
workaround... ```javascript import {Platform} from 'react-native'; import DeviceInfo from 'react-native-device-info'; ... let dest = `${RNFS.DocumentDirectoryPath}/${name + '.' + extension}`; if(Platform.OS === 'android') { let apiLevel = await DeviceInfo.getApiLevel(); if(apiLevel
The core issue is it's passing a fixed composerHeight prop to the Composer component — which prevents the TextInput from growing dynamically when multiple lines are entered. Patch Composer.tsx ```...