Results 69 comments of Luis

@jkasten2 thanks for your answer. Currently I just can experienced this blocking issue from Cuba where I live, but I have found similar issues int he past like these ones:...

I have tested all that versions, even custom and stock in devices like Samsung, HTC, LG, Xiaomi, BLU, Sony and only this 2 devices shows the problem, I think is...

I wouldn't like to say only in LG K20 and Note 8 Android 7.0 because there are lots of devices I have not tested but it is a start point....

> **The steps to reproduce the issue** is very simple just **run the sample you provide**, that's all I did in the video I shared (the device of the video...

I also have a doubt here, why use sqflite? it wouldn't be better/faster/simpler to use a no sql storage like [Hive](https://pub.dev/packages/hive)

> Could you maybe try pub upgrade? Yes I've done it, in fact was the first thing I did when I get the first fail... but the fail remains the...

I also did manual: pod install pod repo update and still failing.

Doing a few changes to the **SlideCountdownClockState** widget this can be fixed. Adding this: ```dart StreamSubscription onDoneStreamSubscription; @override void dispose() { onDoneStreamSubscription?.cancel(); super.dispose(); } ``` Updating the _init function like...

This happens because the Container is missing the `clipBehavior` on `GetSnackBar` widget. It should be fixed by simply adding: ```dart clipBehavior: Clip.hardEdge, ``` to each Container in `_containerWithForm()` and `_containerWithoutForm()`....

> > This happens because the Container is missing the `clipBehavior` on `GetSnackBar` widget. It should be fixed by simply adding: > > ```dart > > clipBehavior: Clip.hardEdge, > >...