Francis Torda

Results 5 comments of Francis Torda

This is how I fixed this issue using RxDart's debounceTime. ``` late StreamSubscription connectivitySubs; PublishSubject onConnectionChange = PublishSubject(); onConnectionChange .debounceTime(const Duration( seconds: 1, )) .listen((event) { log.d('connectionOnChange $event'); if (event...

Got it working for now. I hope there's a better way than this. ``` sh ```

@Swiip even if I did `--save` still not injecting. I also checked angular-foundation-6 bower.json, and it has the correct main. ``` "main": [ "dist/angular-foundation.js" ] ``` Please lead me to...

How can we use angular-foundation-6 instead of 5? is there an existing guide out there?