Nathan

Results 13 comments of Nathan

Have you solved this @dquessenberry? I have this working, but I used a completely different solution. I don't think I was able to get this working with this particular library...

import RNPickerSelect, { PickerSelectProps } from 'react-native-picker-select' import { DeviceEventEmitter, Keyboard, LayoutRectangle, Text } from 'react-native' import InputScrollView, { InputScrollViewProps } from 'react-native-input-scroll-view' import * as _ from 'lodash' _Select...

@ArkanRomanPango Have you resolved your issue yet? If not are you able to share the parent component that manages state etc? I would like a better picture of how you...

@thehairy Can you share a screen cap of what you are experiencing?

Have you resolved the issue you are experiencing @thehairy? What did you use to setup theming?

I'm not sure that's a bug. Is the blue view a whole button? If so, the button intercepts the gesture and doesn't let the swipe propagate through. Could you try...

Try changing `const onSetDAC = () => setDAC(!dAC)` to `const onSetDAC = () => setDAC(currentDAC => !currentDAC)`. Using the callback will ensure you are using the latest dAC before negating...

I believe you should be able to create a ref for the input and on mount set the focus. You may have to set a timeout/delay. You don't want to...

When I find time this weekend I will creat a snack with a resolution.

I'm confused as to what you are doing with the scroll events. Im on my phone. I'll have to open this ticket in the browser to better understand what is...