Jeremy Casey

Results 4 comments of Jeremy Casey

For android, what needs to be done is replace `TelephonyManager` with `AudioManager`. I have a custom fork with this implemented. [Here is the relevant commit](https://github.com/jeremy8883/react-native-audio-streaming/commit/a09582f8cefb8fb8fdbd34783dd12455e24881c7). It has several commits before...

We ran into a similar situation, where we had some fields inside an accordion. When an accordion item is closed, its child components become unmounted, and therefore many of the...

What we ended up actually doing was creating a fake `Field` component, which lived beside the accordion. It would watch for form changes, and set its own `dirty` field state...

Looking at the navState object that we get back from `onNavigationStateChange`, it looks like this: ``` { canGoBack: false canGoForward: false loading: false title: "" url: "https://mywebsite.com/" } ``` So...