C.T.

Results 17 comments of C.T.

@EduVencovsky You sir are a gentleman and a scholar! Been searching for that solution for ages.

If anyone wants to do the same thing, here is my Keyboard Aware Draggable Flatlist ``` // In keyboard-aware-draggable-flatlist.js import DraggableFlatList from 'react-native-draggable-flatlist'; import listenToKeyboardEvents from 'react-native-keyboard-aware-scroll-view/lib/KeyboardAwareHOC'; const config =...

Update: I found a kind of workaround. Basically, I just copied the same logic from the MenuOption's onSelect, to a Text or icon component child of MenuOption, in the form...

I found a temporary workaround, which is to use Expo's classic build service, instead of their newer EAS build service. Unfortunately, the classic build service is deprecated and goes offline...

Update: The EAS guys gave a kind of "not my problem" response. I also reached out to the guys in charge of microsoft's @azure/cosmos package and they're investigating finding a...

@juancarlosjr97 I decided not to worry about offline behavior for the time being, so no.;

+1 for textInput support

NVM, turns out it's built right into TextInput: ``` ``` https://reactnative.dev/docs/textinput#datadetectortypes-ios

It is working well. Fixing the scroll issue was a bit of a pain tho. It's been awhile since I worked on it so I don't remember everything, but hopefully...