Guy Luz

Results 254 issues of Guy Luz

If I understand correctly dart_ping_ios is the same package as dart_ping but includes flutter parts so that it can interact with flutter system calls like the package for ios. But...

blocked

Can you please create a package out of it?. I would like to implement this widget inside my app. It will be used to control smart thermostats/boilers and maybe more...

Can you make this package support dart native without flutter? This will open so many options for this package, and it is already a binding of c++ implementation so it...

enhancement

This package is very nice, adding a GIF to the readme can make it more popular. People will understand in a glance what does this package provides

### Description It would be awesome if this package could support even more health platforms, specifically in Android side. * [samsung-health](https://www.samsung.com/us/apps/samsung-health/) * [HUAWEI Health Kit](https://developer.huawei.com/consumer/en/doc/HMS-Plugin-Guides/service-introduction-0000001073951368?ha_source=hms1) ### Additional information Found a...

improvement

Are there any benefits of using this package over flutter_background_service?

enhancement

The GIF in the readme is broken ![image](https://github.com/funwithflutter/flutter_confetti/assets/9304740/b3c3d4fa-43dd-4491-989f-2ea341203d57)

`CircularCountDownTimer(duration: 5)` to `CircularCountDownTimer(duration: Duration(seconds: 5))` We can improve the code by changing the duration parameter from int in seconds to Duration.

end default value can be `Duration.zero ` Currently it does not have a default value and needs to get specify ```dart CustomTimerController( vsync: this, begin: Duration(hours: 24), end: Duration.zero, );...