Guy Luz
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...
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...
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...
Are there any benefits of using this package over flutter_background_service?
The GIF in the readme is broken 
`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, );...