Daniel Oliveira

Results 58 comments of Daniel Oliveira

Very interested on this feature 👀

I thought that my computer was going crazy because my winget commands are taking about 20-30 seconds to complete. I posted a question here https://github.com/microsoft/winget-cli/discussions/1810 I am happy to known...

I'm having this project right now. Using flutter 2.2.3 and can't upgrade it to 2.8 (or 2.5) yet =( And I dont have direct dependnecy of flutter_svg, it is coming...

I was able to fix that by placing: ``` dependency_overrides: flutter_svg: 0.22.0 ``` on my apps's `pubpec.yaml`.

Wold like to share a way of testing that I've found: just add `HttpOverrides.global = null;` to your `setUpAll` of your tests.

I understand! Please just just keep in mind that `winget` is the official package manager that comes by default on all modern windows computers :)

This is the error I'm getting: ``` Unhandled Exception: PlatformException(Error 10, kCLErrorDomain, A operação não pôde ser concluída. (kCLErrorDomain erro 10.)) #0 StandardMethodCodec.decodeEnvelope (package:flutter/src/services/message_codecs.dart:564:7) #1 MethodChannel.invokeMethod (package:flutter/src/services/platform_channel.dart:316:33) #2 LocalGeocoding.findAddressesFromCoordinates (package:geocoder/services/local.dart:13:41)...

Nice job guys!! Any Idea when we getting it in stable?

No guys, that os not the behavior I want because I demands the user to manually call cancelOnError. I am developing an API and it must be concise, I don't...

Iactually I solved it using the operators we already have, like this: ```dart timeout(ms(timeoutMillis)) .onErrorResumeNext(Observable.empty()) ``` But it is a ugly workaround. I was thinking on on official, api supported,...