Chris Geirman

Results 26 comments of Chris Geirman

@yltang52 I'm running on Mac without issue. Have you tried a different OS?

@iGitK72 Did you end up making any progress on this? Mind sharing if you have?

try my forked version. I've not tested on firefox, but it definitely works on chrome. https://github.com/geirman/recorder-wav-mp3

I'm also not an iOS developer, so I'm useless in helping to bring iOS support. However, I would guess that being able to support iOS would greatly improve the adoption...

@mvayngrib the accepted +1 convention these days is in the form of a 👍 reaction. Would be great if you tried to do that instead going forward :)

Good find @brodybits

FYI: This doesn't seem to work well when changing orientation in the slideshow view. The offset will need to be recalculated and I lost swipe functionality.

Yah, thanks... it's not really a big problem for me. It works well without the layout calculations in `2.1.4`. The only problem I get during orientation change is that the...

@sicsol here's the relevant code 💯 ``` import { ScreenOrientation } from 'expo'; componentWillMount() { ScreenOrientation.allow(ScreenOrientation.Orientation.ALL_BUT_UPSIDE_DOWN); } componentWillUnmount() { ScreenOrientation.allow(ScreenOrientation.Orientation.PORTRAIT); } ```