Jacob Parker

Results 261 comments of Jacob Parker

I'll try and push something this week!

Could you check if there’s a babelrc file in `node_modules/yoga-layout`?

I think we need a `yoga-prebuilt` package, which just contains the build output from yoga. I'll try and work on this at some point. But until I've done this, this...

:+1: or just manually delete it in your node modules

Weird. Try updating `jest-snapshots-svg`. We removed that dependency when we refactored the text layout.

You'll need a better example of your problem - a video might help here

@janicduplessis I think this could be fixed by emitting an `NSNotification` from `RNCSafeAreaProvider`, and having the views subscribe to that (with `id:_providerView`) Would you accept a PR with this change?

You gotta nest every single route component in a `SafeAreaProvider`. E.g. ```js const HomeScreen = () => { return ( justifyContent: 'flex-end' ); }; ```

@jneterer The SafeAreaProvider will set the safe area for all child SafeAreaViews. If the top SafeAreaProvider does not extend into the bottom safe area (or bottom SAP doesn't extend into...

Could you give a bit more information about your setup? `SafeAreaContext` takes an `initialSafeAreaInsets` prop, which you can set to `initialWindowMetrics.insets` (which is the insets when the app launched). I...