I am looking for a package that can fit me in a flutter that will sync between smart watches like Samsung watch or Apple Watch. I want to get heart rate data from them. Anyone know of such a package or idea to communicate with the watch?
Asked
Active
Viewed 3,523 times
3
-
You can refer to this answer: https://stackoverflow.com/a/76464852/12555686 – Simran Sharma Jun 13 '23 at 12:30
1 Answers
2
At present all of wear, tizen, and watch os have different mechanisms for obtaining this data natively, all of which would need a flutter MethodChannel mapping to expose to the flutter side. For wear you can use the wearable_communicator plugin for communicating via the data layer, but I’m not aware of any equivalent for the other two. Alternatively, you could publish this data from the watch to something like an MQTT broker and use an MQTT client on the flutter app to obtain the readings.

Paul Mundt
- 459
- 6
- 9