anniewey

Results 31 comments of anniewey

there's `withOverlay` prop available in latest version. just set to false https://jeremybarbet.github.io/react-native-modalize/#/PROPS?id=withoverlay

Following the example but getting missing dependency error. While including `start` in dependency will cause infinity loops. How to get it work? ``` useEffect(() => { if (canStart) { //...

looks like not supported in Android as mentioned here in #256 @wuxudong is it supported in latest version already? the thread is years ago

@Saad-Bashar i had the same problem, appending `.pdf` to the path fixes the problem for me path: `${dirs.DocumentDir}/${fileName}.pdf`, ``` LOG The file saved to /Users/xx/Library/Developer/CoreSimulator/Devices/FEBCC312-3D3A-4C60-A008-49A488000139/data/Containers/Data/Application/6DE346D7-CC55-4E21-B9F5-1D9766E977EB/Documents/Resources-1701931717558 LOG The file saved to...

i have similar issue with op when scrolling down the screen with multiple charts (scatter/bar). the scroll gesture is override by the focus on the data points on the scatter/bar...

> My experience that root cause is your version cocoapods. I upgraded to version 1.11.3 and it worked without change any config. Not working for me, I'm using `1.11.3`. I...

Had the same problem, also happened when setting state from [] to [{..}]. Can reproduce with simple example below. The pie is showing but the focused section isn't reflecting. ```...

@naveenvignesh5 hi, looking for this enhancement too. in my case, my text was autofill to the first input only, which i suspect is because of the `OTPTextInput` is split to...

This enhancement actually has been released in [v1.1.1](https://github.com/naveenvignesh5/react-native-otp-textinput/releases/tag/v1.1.1) using `handleCellTextChange`. Check the example for the complete source code. ``` import OTPTextView from 'react-native-otp-textinput'; import Clipboard from '@react-native-clipboard/clipboard'; const handleCellTextChange =...