-
-
Notifications
You must be signed in to change notification settings - Fork 87
add bowling and a general workout, and title Health Connect records #300
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 2 commits
be5bb07
ae24d72
484f463
76c3657
221f6d6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -164,11 +164,17 @@ class _ActivitySetupState extends State<ActivitySetup> { | |||||||||||||||||||||||||||||||||||||||||||||
| child: Row(children: [ | ||||||||||||||||||||||||||||||||||||||||||||||
| Expanded( | ||||||||||||||||||||||||||||||||||||||||||||||
| child: Text( | ||||||||||||||||||||||||||||||||||||||||||||||
| est == null | ||||||||||||||||||||||||||||||||||||||||||||||
| ? 'Calories need your weight.' | ||||||||||||||||||||||||||||||||||||||||||||||
| : 'About $est kcal per $_estimateMin min, from ' | ||||||||||||||||||||||||||||||||||||||||||||||
| '${a.met.toStringAsFixed(1)} MET and your ' | ||||||||||||||||||||||||||||||||||||||||||||||
| 'weight.', | ||||||||||||||||||||||||||||||||||||||||||||||
| a.met == null | ||||||||||||||||||||||||||||||||||||||||||||||
| ? 'No estimate up front: no published MET ' | ||||||||||||||||||||||||||||||||||||||||||||||
| 'applies to a session that names no ' | ||||||||||||||||||||||||||||||||||||||||||||||
| 'activity. Calories come from your heart ' | ||||||||||||||||||||||||||||||||||||||||||||||
| 'rate instead, when your maximum and ' | ||||||||||||||||||||||||||||||||||||||||||||||
| 'resting rates are set.' | ||||||||||||||||||||||||||||||||||||||||||||||
| : est == null | ||||||||||||||||||||||||||||||||||||||||||||||
| ? 'Calories need your weight.' | ||||||||||||||||||||||||||||||||||||||||||||||
| : 'About $est kcal per $_estimateMin min, ' | ||||||||||||||||||||||||||||||||||||||||||||||
| 'from ${a.met!.toStringAsFixed(1)} MET ' | ||||||||||||||||||||||||||||||||||||||||||||||
| 'and your weight.', | ||||||||||||||||||||||||||||||||||||||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🎯 Functional Correctness | 🟡 Minor | ⚡ Quick win State all prerequisites for heart-rate calorie estimates. When Proposed wording- ? 'No estimate up front: no published MET '
+ ? 'No estimate up front: no published MET '
'applies to a session that names no '
'activity. Calories come from your heart '
- 'rate instead, when your maximum and '
- 'resting rates are set.'
+ 'rate instead when the required heart-rate '
+ 'and profile data are available.'📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||||||||||||||||||||||||||||||||||
| style: F.cap.copyWith(color: p.ink3, height: 1.5)), | ||||||||||||||||||||||||||||||||||||||||||||||
| ), | ||||||||||||||||||||||||||||||||||||||||||||||
| ]), | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
Uh oh!
There was an error while loading. Please reload this page.