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

Display step data in a list view #8

Open
PatHock opened this issue Jul 7, 2018 · 0 comments
Open

Display step data in a list view #8

PatHock opened this issue Jul 7, 2018 · 0 comments
Assignees
Labels
bluetooth priority-high Work on this first view anything visual on the screen

Comments

@PatHock
Copy link
Collaborator

PatHock commented Jul 7, 2018

End goal

  • Create a list view for daily step count totals

Relevant Info/Links

This could be achieved using a ListTile view.
https://docs.flutter.io/flutter/material/ListTile-class.html

Your Code

An example of a ListTile object (which would represent step totals for one day). Taken from the flutter docs link above.

new ListTile(
  leading: const Icon(Icons.flight_land),
  title: const Text('Trix\'s airplane'),
  subtitle: _act != 2 ? const Text('The airplane is only in Act II.') : null,
  enabled: _act == 2,
  onTap: () { /* react to the tile being tapped */ }
)
@PatHock PatHock added view anything visual on the screen priority-high Work on this first bluetooth labels Jul 7, 2018
@PatHock PatHock added this to the Basic working system milestone Jul 7, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bluetooth priority-high Work on this first view anything visual on the screen
Projects
None yet
Development

No branches or pull requests

2 participants