Edgar

Results 16 comments of Edgar

@rvpyrv I know `OOP`, and I know what `Component` does. I'll rephrase my question: IMO making `App` a class is an overkill, why not just make it an object `App...

@RubenSandwich have you tried to implement [this ](http://stackoverflow.com/a/1220605/4541800) from the native side?

**For everyone with this issue:** http://stackoverflow.com/a/31074901/4541800 This is my solution (won't suit everyone): ``` // Don't show error if error.code === 3 (Timeout) geolocationError() { let error = Geolocation.error(); return...

Yes, sure. ``` const styles = StyleSheet.create({ blurView: { width: 200, height: 200, backgroundColor: 'rgba(0,0,0,.1)', borderTopLeftRadius: 100, borderTopRightRadius: 100, // borderRadius: 100,

I think this can relate to https://github.com/react-native-community/react-native-blur/issues/154

> So `borderRadius `works, but if you use one of the `borderRadius` it breaks Exactly. Can `_visualEffectView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;` , `dispatch_async` and not subclassing `RCTView` cause this issue?...

@MeKarina how about this one? ``` import React from 'react' export default ({prop}) => ( ) ```

Reproduced on iOS 12.2. Not reproduced on iOS 13.1. I guess it's fixed now.

Did anyone succeed in providing fallback values? for example for a `background` css prop.