Danilo Bürger

Results 64 comments of Danilo Bürger

Inline Requires: https://reactnative.dev/docs/ram-bundles-inline-requires#inline-requires

Hi @Qix- 👋 , thanks for taking the time. Based of your comment in #78 I made the PR: > I don't normally care to support non-compliant javascript engines but...

This was fixed in react-native starting with v0.69.0 (https://github.com/facebook/metro/pull/791, metro release [0.70.1](https://github.com/facebook/metro/releases/tag/v0.70.1)). So this PR is no longer necessary for react-native. I still consider this PR valid as named groups...

Yeah, this seems really weird and not rational 😆

This can be done with the native `DatePicker` on android. Currently we use the following layout for it: ``` ``` Then in the component: ``` class DatePickerView extends LinearLayout {...

@Guuz it depends. If the method added via the categories is identical, then yes.

To create a deb, it would really be easy with https://github.com/unindented/electron-installer-debian Just ``` electron-installer-debian --src build --dest dist --arch amd64 ``` on the current build output

I solved this by replacing the following in EGOImageLoader: ``` Objective-C - (void)imageLoadConnectionDidFinishLoading:(EGOImageLoadConnection *)connection { UIImage* anImage = [UIImage imageWithData:connection.responseData]; ... ``` with: ``` Objective-C - (void)imageLoadConnectionDidFinishLoading:(EGOImageLoadConnection *)connection { CFDataRef...

I am wondering the same thing. Reading through @davecheney article https://dave.cheney.net/2016/04/27/dont-just-check-errors-handle-them-gracefully the advice is to use behavior. If the behavior is somewhere in the middle of the stack **and** that...

@iway1 is this fixed for you with https://github.com/th3rdwave/react-native-safe-area-context/pull/229 ?