Skip to content
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

Add Step Goal feature #10

Open
PatHock opened this issue Jul 7, 2018 · 1 comment
Open

Add Step Goal feature #10

PatHock opened this issue Jul 7, 2018 · 1 comment
Assignees
Labels
enhancement New feature or request priority-normal Normal stuff size-medium Two to three days. view anything visual on the screen
Projects
Milestone

Comments

@PatHock
Copy link
Collaborator

PatHock commented Jul 7, 2018

End goal

  • Allow user to input an integer for their daily step goal
  • Possibly notify the user that he/she has reached their step goal. This could be via the landing page of the app and/or via a push notification.

Relevant Info/Links

https://docs.flutter.io/flutter/material/TextFormField-class.html
TextFormFields have built-in form validation.

Your Code

Step goal input can be achieved with a TextFormField and a number validator.

new TextFormField(
    keyboardType: TextInputType.number, 
    validator: numberValidator,
    ...
)
@PatHock PatHock added enhancement New feature or request view anything visual on the screen size-medium Two to three days. priority-normal Normal stuff labels Jul 7, 2018
@PatHock PatHock added this to To do in Sprint 2 via automation Jul 7, 2018
@PatHock PatHock added this to the Completed App milestone Jul 7, 2018
@smit-happens
Copy link
Owner

possible view down the road:
image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request priority-normal Normal stuff size-medium Two to three days. view anything visual on the screen
Projects
Sprint 2
  
To do
Development

No branches or pull requests

2 participants