jzxchiang1

Results 41 comments of jzxchiang1

That's so strange. AFAIK WebKit never removed support for WebAssembly. Why would it not be able to find WebAssembly...?

Yeah, JSC is used by default. I have no idea why they'd be different. Is your simulator also using iOS 15.2, or is it 15.3 or something else? WebAssembly is...

> I could not get my hands on another device yet, but I filed a report with Apple and this is their answer: > > React-Native is using JavaScriptCore.framework, and...

That's strange. I've called WebAssembly from within RN JS on my iPhone SE (iOS 14.6) device in both debug and release mode, and it's worked. I wonder if they added...

Bump, I'm wondering if this is possible, thanks!

> https://unicode-org.github.io/icu/userguide/icu_data/buildtool.html#overview-what-is-in-the-icu-data-file Yeah I would use Hermes if it supported: - BigInt - WebAssembly That's my only blocker. Can you explain why Expo would need to prioritize `BigInt` support? I...

> I've been seeing this issue too, although in a slightly different situation. I have a checkout flow in a `Modal`, and at the end of it, I open Stripe's...

Yeah, I needed to disable autoFocus and do this instead: ``` useEffect(() => { setTimeout(() => textInputRef.current?.focus(), 100); }, []); ```

Related comment: https://github.com/mrousavy/react-native-vision-camera/pull/412#issuecomment-939523230