rlems

Results 7 comments of rlems

I see that the problem for me was that the 'fileNameProperty' field is not updated until the preUpdate event. I'm going to see if i can get it to work...

I found out I do still have a problem, in the preUpdate event i cannot save a field that is not in the changeset. This means i cannot save my...

Great, thank you. I saw the Drei Html component uses that as well, but it did seem you created your own implementation of the Html component since they don't fully...

@losheredos Just a side note: in your function `getSteps` you're passing a parameter named `hour` to `Fitness.getSteps`, this should be named `interval`. And this is my implementation of getting the...

@losheredos You've got these 2 parts in your code: ``` let res = await getSteps(startDate, endDate, 'hour'); function getSteps(startDate, endDate, hour) { return Fitness.getSteps({startDate, endDate, hour}); } ```` This object...

@losheredos There is a method to subscribe to steps: `Fitness.subscribeToSteps()` Check the documentation for more info.

Also check this issue with workaround: https://github.com/OvalMoney/react-native-fitness/issues/50