slaci

Results 22 comments of slaci

Peer dependencies for this package are extremely strict (for no reason I think) and npm takes those rules more seriously than yarn. There is a [pull request](https://github.com/wonday/react-native-orientation-locker/pull/190) which would fix...

Sadly, on iOS 12 this lib doesn't work for me either. The events don't trigger and calling `fetch` manually (retry btn) doesn't do anything. So when displaying a "no network"...

In this commit: https://github.com/DefinitelyTyped/DefinitelyTyped/pull/61822/commits/c94ff1079dac36b15939ddde2d9258d60e58cdb7 they converted `AnimatedInterpolation` to generic. So the declarations should be changed to `AnimatedInterpolation`, but then I guess it wouldn't work with previous versions.

I've tried to use this new `error` property and ran into the same weird issue. I think the error widget should have been a callback which receives the validator's error...

I ran into this issue today on flutter 3.7.3. Simply doing: ```dart Image.network('http://google.com/image-which-not-exists.png', width: 50, height: 50, errorBuilder: (context, error, stackTrace) => const SizedBox.shrink()); ``` Will throw an "uncatchable" exception...

I'm totally fine with that, but didn't know that would fix this error. I tried it and now it's all good so I'm closing. Thanks for the info!

Sadly I'm not familiar enought with typescript to be able to help you with this, but at least I can confirm again that installing `@types/react-dom` workarounds the issue.

Sadly we also bumped into this very serious issue. If you check [ImageCompleterHandler](https://github.com/flutter/flutter/blob/80c2e84975bbd28ecf5f8d4bd4ca5a2490bfc819/packages/flutter/lib/src/painting/image_stream.dart#L493)'s `dispose` method you can see that it calls `maybeDispose` on the `ImageStreamCompleter` object. This [maybeDispose](https://github.com/flutter/flutter/blob/80c2e84975bbd28ecf5f8d4bd4ca5a2490bfc819/packages/flutter/lib/src/painting/image_stream.dart#L694) method does...

> > It would be great if this minor change were merged soon. > > Please refile this PR, as we can't accept contributions without a CLA. Otherwise I will...

This utility can create a git repo from a SVN repository, not a working copy. You need the repository which was created by `svnadmin create` once (on a server). I...