Chris Wales

Results 27 comments of Chris Wales

@bmabir17 this seems to solve the other error for me. ``` _screenshotController .capture(path: path, pixelRatio: 3.0) .then((imgFile) async { await ImageGallerySaver.saveImage( Uint8List.fromList(imgFile.readAsBytesSync())); imgFile.delete(); isCapturing = false; }).catchError((error) { isCapturing =...

@Vassi I tried to reproduce this and it seems to be working for me. Which options are you using in `syncState` and how are you deleting the property?

@Vassi Awesome thanks! I will take a look. Setting the property to `null` instead of `delete` I think should work how you have it. **Note:** Setting the property to null...

@Vassi thanks for the repro. super helpful. It's definitely a bug. One quick fix is instead of `delete` set it to `null` and then check if the food is `null`...

@Vassi the issue is definitely with syncState and the way syncState works with nested state. It is related to how the firebase SDK works, but the biggest problem is that...

@hyperbrave I was wondering how that would play with `syncState`. I think also you could run into problems with multiple components using `syncState` as it will always use the first...

@hyperbrave I looked at jumpsuit briefly and it is very cool. I personally would not use `re-base` with it though. I would just use the firebase SDK directly to implement...

@ozgunbal that is awesome! Would love to include custom hooks. reading the link you sent the thing that jumped out at me as possibly being an issue for `syncState` or...

@henkiejan removeBinding should be synchronous. Will see if I can reproduce because that looks right to me. Thanks for reporting.

@TheHandsomeCoder yeah that is wrong its not required. It used to be in the past and missed updating it.