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

[104] Add branded icon menu nav animation #28

Conversation

clocksmith
Copy link

mock: https://material.io/design/assets/1o4ts_Rfz0X97TaapdQ-9YON6O3WzE3WZ/casestudies-shrine-backdrop-1b.mp4

screen recording: not allowed in this PR, but I will email it to reviewers shortly.

Notes:

  1. The icons are incorrectly defaulted to 24dp, but they should be 18dp.
  2. The fling velocity may be backwards in the toggle animations, so start and end for these animations might technically be in reverse.
  3. FadeTransition vs Opacity: While browsing the docs, I quickly found FadeTransition as a recommendation to use for this animation, but I also see Opacity is already being used in a similar manner.
  4. I would like to learn how to properly squash local commits into more concise messages for github history.
  5. I would like to propose that the entire .idea folder (and other project files) be listed in the .gitignore. If a goal of the codelab is to make it so that there is minimal setup locally, then including .idea files that are specific to one's local machine may do more harm than good, especially if the person taking this codelab making commits to their own git project

@clocksmith clocksmith force-pushed the fix-animate-branded-icon-104-complete branch from 1d5dbf1 to 2a5f058 Compare May 29, 2018 15:10
Copy link
Collaborator

@willlarche willlarche left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great job!

@clocksmith
Copy link
Author

Re-arranged the structure here per the comments. PTAL.

Copy link
Collaborator

@HansMuller HansMuller left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using FractionalTranslation is just right.

@@ -58,43 +58,83 @@ class _FrontLayer extends StatelessWidget {
}

class _BackdropTitle extends AnimatedWidget {
// final Widget customIcon;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Intentional?

translation: Tween<Offset>(
begin: Offset.zero,
end: Offset(1.0, 0.0),
).animate(animation).value,
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

.animate(animation).value => .evaluate(animation)

Using .animate here would work but you don't need to create a new animation that's listening to animation

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we change this in the backdrop layer animation too?

translation: Tween<Offset>(
begin: Offset.zero,
end: Offset(0.5, 0.0),
).animate(animation).value,
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same comment as before (and again below)

@clocksmith
Copy link
Author

Comments addressed

@clocksmith clocksmith merged commit 75da0a3 into material-components:104-complete May 30, 2018
@clocksmith clocksmith deleted the fix-animate-branded-icon-104-complete branch June 7, 2018 15:18
willlarche pushed a commit that referenced this pull request Jun 11, 2018
* [101] Correcting widget class.

* [101] Complete code.
[102] Starter code.

* [102] Minor copy correction.

* [101] Update for Dart 2

* [102] Complete code.
[103] Starter code.

* [102] Correcting home being stateful.

* [103] Correcting order of fields. (#10)

* [102] Removing unneeded value.

* [102] Dart 2.

* [102] Data correction.

* [103] Completed code.
[104] Starter code.

* [103] Removing unneeded directory.

* [103] Unused icons code.

* [103] Moving supplemental files.

* [103] Using recent changes.

* [103] Removing unused import.

* [103] Data correction.

* [103] Adding body2 styling.

* [103] Dart 2

* [103] Color const correction.

* [102] Complete code.
[103] Starter code.

* [103] Completed code.
[104] Starter code.

* [103] Completed code.
[104] Starter code.

* [103] Correcting order of fields. (#10)

* add backdrop and working menu with filtering

* [104] Minor visual changes.

* [103] Using recent changes.

* [104] Visual detail.

* [104] Newline at EOF.

* [104] License stanzas.

* [104] Removing files from merge.

* [104] Sync.

* [104] Correcting license

* [104] Adding license stanza

* [104] Decrease backdrop radius size to match mocks. (#21)

* [104] PR feedback.

* [104] Removing an unnecessary widget.

* [104] Formatting.

* [104] Replaces regular hamburger menu behavior with a branded version (#22)

* [104] Replaces regular hamburger menu behavior with a branded icon version.

* Fixed space nit and refactored branded icon into its own var.

* whitespace

* [104] Changing "Panel" to "Layer" (#24)

* [104] Clarifying backdrop.

* [104] Changing panel to layer.

* Start to reconfigure the _BackdropTitle to handle custom transition animations.

* Added a customIcon to _BackdropTitle with the correct animations for branded icon.

* Added front and back title sliding to the branded icon animation.

* [104] Merge sync. (#27)

* Start to reconfigure the _BackdropTitle to handle custom transition animations.

* Added a customIcon to _BackdropTitle with the correct animations for branded icon.

* Added front and back title sliding to the branded icon animation.

* rebase fixes

* Responded to comments

* merge fix

* Rearranged the animations and used nested widgets instead of transitions with no local vars.

* Fix bad rebase

* Respond to comments by replacing .animate with .evaluate
willlarche pushed a commit that referenced this pull request Jun 11, 2018
* [101] Correcting widget class.

* [101] Complete code.
[102] Starter code.

* [102] Minor copy correction.

* [101] Update for Dart 2

* [102] Complete code.
[103] Starter code.

* [102] Correcting home being stateful.

* [103] Correcting order of fields. (#10)

* [102] Removing unneeded value.

* [102] Dart 2.

* [102] Data correction.

* [103] Completed code.
[104] Starter code.

* [103] Removing unneeded directory.

* [103] Unused icons code.

* [103] Moving supplemental files.

* [103] Using recent changes.

* [103] Removing unused import.

* [103] Data correction.

* [103] Adding body2 styling.

* [103] Dart 2

* [103] Color const correction.

* [102] Complete code.
[103] Starter code.

* [103] Completed code.
[104] Starter code.

* [103] Completed code.
[104] Starter code.

* [103] Correcting order of fields. (#10)

* add backdrop and working menu with filtering

* [104] Minor visual changes.

* [103] Using recent changes.

* [104] Visual detail.

* [104] Newline at EOF.

* [104] License stanzas.

* [104] Removing files from merge.

* [104] Sync.

* [104] Correcting license

* [104] Adding license stanza

* [104] Decrease backdrop radius size to match mocks. (#21)

* [104] PR feedback.

* [104] Removing an unnecessary widget.

* [104] Formatting.

* [104] Replaces regular hamburger menu behavior with a branded version (#22)

* [104] Replaces regular hamburger menu behavior with a branded icon version.

* Fixed space nit and refactored branded icon into its own var.

* whitespace

* [104] Changing "Panel" to "Layer" (#24)

* [104] Clarifying backdrop.

* [104] Changing panel to layer.

* Start to reconfigure the _BackdropTitle to handle custom transition animations.

* Added a customIcon to _BackdropTitle with the correct animations for branded icon.

* Added front and back title sliding to the branded icon animation.

* [104] Merge sync. (#27)

* Start to reconfigure the _BackdropTitle to handle custom transition animations.

* Added a customIcon to _BackdropTitle with the correct animations for branded icon.

* Added front and back title sliding to the branded icon animation.

* rebase fixes

* Responded to comments

* merge fix

* Rearranged the animations and used nested widgets instead of transitions with no local vars.

* Fix bad rebase

* Respond to comments by replacing .animate with .evaluate
tianlunlee pushed a commit that referenced this pull request Jun 25, 2018
* [101] Correcting widget class.

* [101] Complete code.
[102] Starter code.

* [102] Minor copy correction.

* [101] Update for Dart 2

* [102] Complete code.
[103] Starter code.

* [102] Correcting home being stateful.

* [103] Correcting order of fields. (#10)

* [102] Removing unneeded value.

* [102] Dart 2.

* [102] Data correction.

* [103] Completed code.
[104] Starter code.

* [103] Removing unneeded directory.

* [103] Unused icons code.

* [103] Moving supplemental files.

* [103] Using recent changes.

* [103] Removing unused import.

* [103] Data correction.

* [103] Adding body2 styling.

* [103] Dart 2

* [103] Color const correction.

* [102] Complete code.
[103] Starter code.

* [103] Completed code.
[104] Starter code.

* [103] Completed code.
[104] Starter code.

* [103] Correcting order of fields. (#10)

* add backdrop and working menu with filtering

* [104] Minor visual changes.

* [103] Using recent changes.

* [104] Visual detail.

* [104] Newline at EOF.

* [104] License stanzas.

* [104] Removing files from merge.

* [104] Sync.

* [104] Correcting license

* [104] Adding license stanza

* [104] Decrease backdrop radius size to match mocks. (#21)

* [104] PR feedback.

* [104] Removing an unnecessary widget.

* [104] Formatting.

* [104] Replaces regular hamburger menu behavior with a branded version (#22)

* [104] Replaces regular hamburger menu behavior with a branded icon version.

* Fixed space nit and refactored branded icon into its own var.

* whitespace

* [104] Changing "Panel" to "Layer" (#24)

* [104] Clarifying backdrop.

* [104] Changing panel to layer.

* Start to reconfigure the _BackdropTitle to handle custom transition animations.

* Added a customIcon to _BackdropTitle with the correct animations for branded icon.

* Added front and back title sliding to the branded icon animation.

* [104] Merge sync. (#27)

* Start to reconfigure the _BackdropTitle to handle custom transition animations.

* Added a customIcon to _BackdropTitle with the correct animations for branded icon.

* Added front and back title sliding to the branded icon animation.

* rebase fixes

* Responded to comments

* merge fix

* Rearranged the animations and used nested widgets instead of transitions with no local vars.

* Fix bad rebase

* Respond to comments by replacing .animate with .evaluate
willlarche added a commit that referenced this pull request Jun 25, 2018
[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44) (#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[103] Completed code.
[104] Starter code.

[103] Removing unneeded directory.

[103] Unused icons code.

[103] Moving supplemental files.

[103] Using recent changes.

[103] Removing unused import.

[103] Data correction.

[103] Adding body2 styling.

[103] Dart 2

[103] Color const correction.

[104] README specificity.

[103] Completed code.
[104] Starter code.

[102] Complete code.
[103] Starter code.

[103] Correcting order of fields. (#10)

[103] Completed code.
[104] Starter code.

[103] Using recent changes.

add backdrop and working menu with filtering

[104] Minor visual changes.

[104] Visual detail.

[104] Newline at EOF.

[104] License stanzas.

[104] Removing files from merge.

[104] Sync.

[104] Correcting license

[104] Adding license stanza

[104] Decrease backdrop radius size to match mocks. (#21)

[104] PR feedback.

[104] Removing an unnecessary widget.

[104] Formatting.

[104] Replaces regular hamburger menu behavior with a branded version (#22)

* [104] Replaces regular hamburger menu behavior with a branded icon version.

* Fixed space nit and refactored branded icon into its own var.

* whitespace

[104] Changing "Panel" to "Layer" (#24)

* [104] Clarifying backdrop.

* [104] Changing panel to layer.

[104] Merge sync. (#27)

[104] Removing log statement.

[104] Correcting import order.

[104] Adding a little whitespace

[104] Backdrop code review feedback (#29)

* [104] PR feedback.

* [104] PR feedback.

* [104] Some whitespace.

[104] Add branded icon menu nav animation (#28)

* [101] Correcting widget class.

* [101] Complete code.
[102] Starter code.

* [102] Minor copy correction.

* [101] Update for Dart 2

* [102] Complete code.
[103] Starter code.

* [102] Correcting home being stateful.

* [103] Correcting order of fields. (#10)

* [102] Removing unneeded value.

* [102] Dart 2.

* [102] Data correction.

* [103] Completed code.
[104] Starter code.

* [103] Removing unneeded directory.

* [103] Unused icons code.

* [103] Moving supplemental files.

* [103] Using recent changes.

* [103] Removing unused import.

* [103] Data correction.

* [103] Adding body2 styling.

* [103] Dart 2

* [103] Color const correction.

* [102] Complete code.
[103] Starter code.

* [103] Completed code.
[104] Starter code.

* [103] Completed code.
[104] Starter code.

* [103] Correcting order of fields. (#10)

* add backdrop and working menu with filtering

* [104] Minor visual changes.

* [103] Using recent changes.

* [104] Visual detail.

* [104] Newline at EOF.

* [104] License stanzas.

* [104] Removing files from merge.

* [104] Sync.

* [104] Correcting license

* [104] Adding license stanza

* [104] Decrease backdrop radius size to match mocks. (#21)

* [104] PR feedback.

* [104] Removing an unnecessary widget.

* [104] Formatting.

* [104] Replaces regular hamburger menu behavior with a branded version (#22)

* [104] Replaces regular hamburger menu behavior with a branded icon version.

* Fixed space nit and refactored branded icon into its own var.

* whitespace

* [104] Changing "Panel" to "Layer" (#24)

* [104] Clarifying backdrop.

* [104] Changing panel to layer.

* Start to reconfigure the _BackdropTitle to handle custom transition animations.

* Added a customIcon to _BackdropTitle with the correct animations for branded icon.

* Added front and back title sliding to the branded icon animation.

* [104] Merge sync. (#27)

* Start to reconfigure the _BackdropTitle to handle custom transition animations.

* Added a customIcon to _BackdropTitle with the correct animations for branded icon.

* Added front and back title sliding to the branded icon animation.

* rebase fixes

* Responded to comments

* merge fix

* Rearranged the animations and used nested widgets instead of transitions with no local vars.

* Fix bad rebase

* Respond to comments by replacing .animate with .evaluate

[104] PR feedback.

[104] Padding correction.

[TextFields] PR feedback.
tianlunlee pushed a commit that referenced this pull request Jun 26, 2018
[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44) (#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[103] Completed code.
[104] Starter code.

[103] Removing unneeded directory.

[103] Unused icons code.

[103] Moving supplemental files.

[103] Using recent changes.

[103] Removing unused import.

[103] Data correction.

[103] Adding body2 styling.

[103] Dart 2

[103] Color const correction.

[104] README specificity.

[103] Completed code.
[104] Starter code.

[102] Complete code.
[103] Starter code.

[103] Correcting order of fields. (#10)

[103] Completed code.
[104] Starter code.

[103] Using recent changes.

add backdrop and working menu with filtering

[104] Minor visual changes.

[104] Visual detail.

[104] Newline at EOF.

[104] License stanzas.

[104] Removing files from merge.

[104] Sync.

[104] Correcting license

[104] Adding license stanza

[104] Decrease backdrop radius size to match mocks. (#21)

[104] PR feedback.

[104] Removing an unnecessary widget.

[104] Formatting.

[104] Replaces regular hamburger menu behavior with a branded version (#22)

* [104] Replaces regular hamburger menu behavior with a branded icon version.

* Fixed space nit and refactored branded icon into its own var.

* whitespace

[104] Changing "Panel" to "Layer" (#24)

* [104] Clarifying backdrop.

* [104] Changing panel to layer.

[104] Merge sync. (#27)

[104] Removing log statement.

[104] Correcting import order.

[104] Adding a little whitespace

[104] Backdrop code review feedback (#29)

* [104] PR feedback.

* [104] PR feedback.

* [104] Some whitespace.

[104] Add branded icon menu nav animation (#28)

* [101] Correcting widget class.

* [101] Complete code.
[102] Starter code.

* [102] Minor copy correction.

* [101] Update for Dart 2

* [102] Complete code.
[103] Starter code.

* [102] Correcting home being stateful.

* [103] Correcting order of fields. (#10)

* [102] Removing unneeded value.

* [102] Dart 2.

* [102] Data correction.

* [103] Completed code.
[104] Starter code.

* [103] Removing unneeded directory.

* [103] Unused icons code.

* [103] Moving supplemental files.

* [103] Using recent changes.

* [103] Removing unused import.

* [103] Data correction.

* [103] Adding body2 styling.

* [103] Dart 2

* [103] Color const correction.

* [102] Complete code.
[103] Starter code.

* [103] Completed code.
[104] Starter code.

* [103] Completed code.
[104] Starter code.

* [103] Correcting order of fields. (#10)

* add backdrop and working menu with filtering

* [104] Minor visual changes.

* [103] Using recent changes.

* [104] Visual detail.

* [104] Newline at EOF.

* [104] License stanzas.

* [104] Removing files from merge.

* [104] Sync.

* [104] Correcting license

* [104] Adding license stanza

* [104] Decrease backdrop radius size to match mocks. (#21)

* [104] PR feedback.

* [104] Removing an unnecessary widget.

* [104] Formatting.

* [104] Replaces regular hamburger menu behavior with a branded version (#22)

* [104] Replaces regular hamburger menu behavior with a branded icon version.

* Fixed space nit and refactored branded icon into its own var.

* whitespace

* [104] Changing "Panel" to "Layer" (#24)

* [104] Clarifying backdrop.

* [104] Changing panel to layer.

* Start to reconfigure the _BackdropTitle to handle custom transition animations.

* Added a customIcon to _BackdropTitle with the correct animations for branded icon.

* Added front and back title sliding to the branded icon animation.

* [104] Merge sync. (#27)

* Start to reconfigure the _BackdropTitle to handle custom transition animations.

* Added a customIcon to _BackdropTitle with the correct animations for branded icon.

* Added front and back title sliding to the branded icon animation.

* rebase fixes

* Responded to comments

* merge fix

* Rearranged the animations and used nested widgets instead of transitions with no local vars.

* Fix bad rebase

* Respond to comments by replacing .animate with .evaluate

[104] PR feedback.

[104] Padding correction.

[TextFields] PR feedback.
tianlunlee pushed a commit that referenced this pull request Jun 26, 2018
[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44) (#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[META] Readme correction.

[104] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44) (#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[103] Completed code.
[104] Starter code.

[103] Removing unneeded directory.

[103] Unused icons code.

[103] Moving supplemental files.

[103] Using recent changes.

[103] Removing unused import.

[103] Data correction.

[103] Adding body2 styling.

[103] Dart 2

[103] Color const correction.

[104] README specificity.

[103] Completed code.
[104] Starter code.

[102] Complete code.
[103] Starter code.

[103] Correcting order of fields. (#10)

[103] Completed code.
[104] Starter code.

[103] Using recent changes.

add backdrop and working menu with filtering

[104] Minor visual changes.

[104] Visual detail.

[104] Newline at EOF.

[104] License stanzas.

[104] Removing files from merge.

[104] Sync.

[104] Correcting license

[104] Adding license stanza

[104] Decrease backdrop radius size to match mocks. (#21)

[104] PR feedback.

[104] Removing an unnecessary widget.

[104] Formatting.

[104] Replaces regular hamburger menu behavior with a branded version (#22)

* [104] Replaces regular hamburger menu behavior with a branded icon version.

* Fixed space nit and refactored branded icon into its own var.

* whitespace

[104] Changing "Panel" to "Layer" (#24)

* [104] Clarifying backdrop.

* [104] Changing panel to layer.

[104] Merge sync. (#27)

[104] Removing log statement.

[104] Correcting import order.

[104] Adding a little whitespace

[104] Backdrop code review feedback (#29)

* [104] PR feedback.

* [104] PR feedback.

* [104] Some whitespace.

[104] Add branded icon menu nav animation (#28)

* [101] Correcting widget class.

* [101] Complete code.
[102] Starter code.

* [102] Minor copy correction.

* [101] Update for Dart 2

* [102] Complete code.
[103] Starter code.

* [102] Correcting home being stateful.

* [103] Correcting order of fields. (#10)

* [102] Removing unneeded value.

* [102] Dart 2.

* [102] Data correction.

* [103] Completed code.
[104] Starter code.

* [103] Removing unneeded directory.

* [103] Unused icons code.

* [103] Moving supplemental files.

* [103] Using recent changes.

* [103] Removing unused import.

* [103] Data correction.

* [103] Adding body2 styling.

* [103] Dart 2

* [103] Color const correction.

* [102] Complete code.
[103] Starter code.

* [103] Completed code.
[104] Starter code.

* [103] Completed code.
[104] Starter code.

* [103] Correcting order of fields. (#10)

* add backdrop and working menu with filtering

* [104] Minor visual changes.

* [103] Using recent changes.

* [104] Visual detail.

* [104] Newline at EOF.

* [104] License stanzas.

* [104] Removing files from merge.

* [104] Sync.

* [104] Correcting license

* [104] Adding license stanza

* [104] Decrease backdrop radius size to match mocks. (#21)

* [104] PR feedback.

* [104] Removing an unnecessary widget.

* [104] Formatting.

* [104] Replaces regular hamburger menu behavior with a branded version (#22)

* [104] Replaces regular hamburger menu behavior with a branded icon version.

* Fixed space nit and refactored branded icon into its own var.

* whitespace

* [104] Changing "Panel" to "Layer" (#24)

* [104] Clarifying backdrop.

* [104] Changing panel to layer.

* Start to reconfigure the _BackdropTitle to handle custom transition animations.

* Added a customIcon to _BackdropTitle with the correct animations for branded icon.

* Added front and back title sliding to the branded icon animation.

* [104] Merge sync. (#27)

* Start to reconfigure the _BackdropTitle to handle custom transition animations.

* Added a customIcon to _BackdropTitle with the correct animations for branded icon.

* Added front and back title sliding to the branded icon animation.

* rebase fixes

* Responded to comments

* merge fix

* Rearranged the animations and used nested widgets instead of transitions with no local vars.

* Fix bad rebase

* Respond to comments by replacing .animate with .evaluate

[104] PR feedback.

[104] Padding correction.

[TextFields] PR feedback.
michdud pushed a commit that referenced this pull request Jun 26, 2018
[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44) (#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[META] Readme correction.

[104] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44) (#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[103] Completed code.
[104] Starter code.

[103] Removing unneeded directory.

[103] Unused icons code.

[103] Moving supplemental files.

[103] Using recent changes.

[103] Removing unused import.

[103] Data correction.

[103] Adding body2 styling.

[103] Dart 2

[103] Color const correction.

[104] README specificity.

[103] Completed code.
[104] Starter code.

[102] Complete code.
[103] Starter code.

[103] Correcting order of fields. (#10)

[103] Completed code.
[104] Starter code.

[103] Using recent changes.

add backdrop and working menu with filtering

[104] Minor visual changes.

[104] Visual detail.

[104] Newline at EOF.

[104] License stanzas.

[104] Removing files from merge.

[104] Sync.

[104] Correcting license

[104] Adding license stanza

[104] Decrease backdrop radius size to match mocks. (#21)

[104] PR feedback.

[104] Removing an unnecessary widget.

[104] Formatting.

[104] Replaces regular hamburger menu behavior with a branded version (#22)

* [104] Replaces regular hamburger menu behavior with a branded icon version.

* Fixed space nit and refactored branded icon into its own var.

* whitespace

[104] Changing "Panel" to "Layer" (#24)

* [104] Clarifying backdrop.

* [104] Changing panel to layer.

[104] Merge sync. (#27)

[104] Removing log statement.

[104] Correcting import order.

[104] Adding a little whitespace

[104] Backdrop code review feedback (#29)

* [104] PR feedback.

* [104] PR feedback.

* [104] Some whitespace.

[104] Add branded icon menu nav animation (#28)

* [101] Correcting widget class.

* [101] Complete code.
[102] Starter code.

* [102] Minor copy correction.

* [101] Update for Dart 2

* [102] Complete code.
[103] Starter code.

* [102] Correcting home being stateful.

* [103] Correcting order of fields. (#10)

* [102] Removing unneeded value.

* [102] Dart 2.

* [102] Data correction.

* [103] Completed code.
[104] Starter code.

* [103] Removing unneeded directory.

* [103] Unused icons code.

* [103] Moving supplemental files.

* [103] Using recent changes.

* [103] Removing unused import.

* [103] Data correction.

* [103] Adding body2 styling.

* [103] Dart 2

* [103] Color const correction.

* [102] Complete code.
[103] Starter code.

* [103] Completed code.
[104] Starter code.

* [103] Completed code.
[104] Starter code.

* [103] Correcting order of fields. (#10)

* add backdrop and working menu with filtering

* [104] Minor visual changes.

* [103] Using recent changes.

* [104] Visual detail.

* [104] Newline at EOF.

* [104] License stanzas.

* [104] Removing files from merge.

* [104] Sync.

* [104] Correcting license

* [104] Adding license stanza

* [104] Decrease backdrop radius size to match mocks. (#21)

* [104] PR feedback.

* [104] Removing an unnecessary widget.

* [104] Formatting.

* [104] Replaces regular hamburger menu behavior with a branded version (#22)

* [104] Replaces regular hamburger menu behavior with a branded icon version.

* Fixed space nit and refactored branded icon into its own var.

* whitespace

* [104] Changing "Panel" to "Layer" (#24)

* [104] Clarifying backdrop.

* [104] Changing panel to layer.

* Start to reconfigure the _BackdropTitle to handle custom transition animations.

* Added a customIcon to _BackdropTitle with the correct animations for branded icon.

* Added front and back title sliding to the branded icon animation.

* [104] Merge sync. (#27)

* Start to reconfigure the _BackdropTitle to handle custom transition animations.

* Added a customIcon to _BackdropTitle with the correct animations for branded icon.

* Added front and back title sliding to the branded icon animation.

* rebase fixes

* Responded to comments

* merge fix

* Rearranged the animations and used nested widgets instead of transitions with no local vars.

* Fix bad rebase

* Respond to comments by replacing .animate with .evaluate

[104] PR feedback.

[104] Padding correction.

[TextFields] PR feedback.
michdud pushed a commit that referenced this pull request Jun 27, 2018
[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44) (#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[META] Readme correction.

[104] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44) (#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[103] Completed code.
[104] Starter code.

[103] Removing unneeded directory.

[103] Unused icons code.

[103] Moving supplemental files.

[103] Using recent changes.

[103] Removing unused import.

[103] Data correction.

[103] Adding body2 styling.

[103] Dart 2

[103] Color const correction.

[104] README specificity.

[103] Completed code.
[104] Starter code.

[102] Complete code.
[103] Starter code.

[103] Correcting order of fields. (#10)

[103] Completed code.
[104] Starter code.

[103] Using recent changes.

add backdrop and working menu with filtering

[104] Minor visual changes.

[104] Visual detail.

[104] Newline at EOF.

[104] License stanzas.

[104] Removing files from merge.

[104] Sync.

[104] Correcting license

[104] Adding license stanza

[104] Decrease backdrop radius size to match mocks. (#21)

[104] PR feedback.

[104] Removing an unnecessary widget.

[104] Formatting.

[104] Replaces regular hamburger menu behavior with a branded version (#22)

* [104] Replaces regular hamburger menu behavior with a branded icon version.

* Fixed space nit and refactored branded icon into its own var.

* whitespace

[104] Changing "Panel" to "Layer" (#24)

* [104] Clarifying backdrop.

* [104] Changing panel to layer.

[104] Merge sync. (#27)

[104] Removing log statement.

[104] Correcting import order.

[104] Adding a little whitespace

[104] Backdrop code review feedback (#29)

* [104] PR feedback.

* [104] PR feedback.

* [104] Some whitespace.

[104] Add branded icon menu nav animation (#28)

* [101] Correcting widget class.

* [101] Complete code.
[102] Starter code.

* [102] Minor copy correction.

* [101] Update for Dart 2

* [102] Complete code.
[103] Starter code.

* [102] Correcting home being stateful.

* [103] Correcting order of fields. (#10)

* [102] Removing unneeded value.

* [102] Dart 2.

* [102] Data correction.

* [103] Completed code.
[104] Starter code.

* [103] Removing unneeded directory.

* [103] Unused icons code.

* [103] Moving supplemental files.

* [103] Using recent changes.

* [103] Removing unused import.

* [103] Data correction.

* [103] Adding body2 styling.

* [103] Dart 2

* [103] Color const correction.

* [102] Complete code.
[103] Starter code.

* [103] Completed code.
[104] Starter code.

* [103] Completed code.
[104] Starter code.

* [103] Correcting order of fields. (#10)

* add backdrop and working menu with filtering

* [104] Minor visual changes.

* [103] Using recent changes.

* [104] Visual detail.

* [104] Newline at EOF.

* [104] License stanzas.

* [104] Removing files from merge.

* [104] Sync.

* [104] Correcting license

* [104] Adding license stanza

* [104] Decrease backdrop radius size to match mocks. (#21)

* [104] PR feedback.

* [104] Removing an unnecessary widget.

* [104] Formatting.

* [104] Replaces regular hamburger menu behavior with a branded version (#22)

* [104] Replaces regular hamburger menu behavior with a branded icon version.

* Fixed space nit and refactored branded icon into its own var.

* whitespace

* [104] Changing "Panel" to "Layer" (#24)

* [104] Clarifying backdrop.

* [104] Changing panel to layer.

* Start to reconfigure the _BackdropTitle to handle custom transition animations.

* Added a customIcon to _BackdropTitle with the correct animations for branded icon.

* Added front and back title sliding to the branded icon animation.

* [104] Merge sync. (#27)

* Start to reconfigure the _BackdropTitle to handle custom transition animations.

* Added a customIcon to _BackdropTitle with the correct animations for branded icon.

* Added front and back title sliding to the branded icon animation.

* rebase fixes

* Responded to comments

* merge fix

* Rearranged the animations and used nested widgets instead of transitions with no local vars.

* Fix bad rebase

* Respond to comments by replacing .animate with .evaluate

[104] PR feedback.

[104] Padding correction.

[TextFields] PR feedback.
tianlunlee pushed a commit to tianlunlee/material-components-flutter-codelabs that referenced this pull request Jun 27, 2018
[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (material-components#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (material-components#44)

[101] TODOs for starter code (material-components#50)

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (material-components#54)

[102] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (material-components#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (material-components#44) (material-components#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (material-components#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[META] Readme correction.

[103] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (material-components#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (material-components#44) (material-components#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (material-components#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[103] Completed code.
[104] Starter code.

[103] Removing unneeded directory.

[103] Unused icons code.

[103] Moving supplemental files.

[103] Using recent changes.

[103] Removing unused import.

[103] Data correction.

[103] Adding body2 styling.

[103] Dart 2

[103] Color const correction.

[104] README specificity.

[104] Todos for 104 (material-components#51)

[104] Update of 104 todos (material-components#58)

Removed import todos and rearranged a todo to make more sense.

[102] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (material-components#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (material-components#44) (material-components#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (material-components#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[META] Readme correction.

[104] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (material-components#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (material-components#44) (material-components#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (material-components#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[103] Completed code.
[104] Starter code.

[103] Removing unneeded directory.

[103] Unused icons code.

[103] Moving supplemental files.

[103] Using recent changes.

[103] Removing unused import.

[103] Data correction.

[103] Adding body2 styling.

[103] Dart 2

[103] Color const correction.

[104] README specificity.

[103] Completed code.
[104] Starter code.

[102] Complete code.
[103] Starter code.

[103] Correcting order of fields. (material-components#10)

[103] Completed code.
[104] Starter code.

[103] Using recent changes.

add backdrop and working menu with filtering

[104] Minor visual changes.

[104] Visual detail.

[104] Newline at EOF.

[104] License stanzas.

[104] Removing files from merge.

[104] Sync.

[104] Correcting license

[104] Adding license stanza

[104] Decrease backdrop radius size to match mocks. (material-components#21)

[104] PR feedback.

[104] Removing an unnecessary widget.

[104] Formatting.

[104] Replaces regular hamburger menu behavior with a branded version (material-components#22)

* [104] Replaces regular hamburger menu behavior with a branded icon version.

* Fixed space nit and refactored branded icon into its own var.

* whitespace

[104] Changing "Panel" to "Layer" (material-components#24)

* [104] Clarifying backdrop.

* [104] Changing panel to layer.

[104] Merge sync. (material-components#27)

[104] Removing log statement.

[104] Correcting import order.

[104] Adding a little whitespace

[104] Backdrop code review feedback (material-components#29)

* [104] PR feedback.

* [104] PR feedback.

* [104] Some whitespace.

[104] Add branded icon menu nav animation (material-components#28)

* [101] Correcting widget class.

* [101] Complete code.
[102] Starter code.

* [102] Minor copy correction.

* [101] Update for Dart 2

* [102] Complete code.
[103] Starter code.

* [102] Correcting home being stateful.

* [103] Correcting order of fields. (material-components#10)

* [102] Removing unneeded value.

* [102] Dart 2.

* [102] Data correction.

* [103] Completed code.
[104] Starter code.

* [103] Removing unneeded directory.

* [103] Unused icons code.

* [103] Moving supplemental files.

* [103] Using recent changes.

* [103] Removing unused import.

* [103] Data correction.

* [103] Adding body2 styling.

* [103] Dart 2

* [103] Color const correction.

* [102] Complete code.
[103] Starter code.

* [103] Completed code.
[104] Starter code.

* [103] Completed code.
[104] Starter code.

* [103] Correcting order of fields. (material-components#10)

* add backdrop and working menu with filtering

* [104] Minor visual changes.

* [103] Using recent changes.

* [104] Visual detail.

* [104] Newline at EOF.

* [104] License stanzas.

* [104] Removing files from merge.

* [104] Sync.

* [104] Correcting license

* [104] Adding license stanza

* [104] Decrease backdrop radius size to match mocks. (material-components#21)

* [104] PR feedback.

* [104] Removing an unnecessary widget.

* [104] Formatting.

* [104] Replaces regular hamburger menu behavior with a branded version (material-components#22)

* [104] Replaces regular hamburger menu behavior with a branded icon version.

* Fixed space nit and refactored branded icon into its own var.

* whitespace

* [104] Changing "Panel" to "Layer" (material-components#24)

* [104] Clarifying backdrop.

* [104] Changing panel to layer.

* Start to reconfigure the _BackdropTitle to handle custom transition animations.

* Added a customIcon to _BackdropTitle with the correct animations for branded icon.

* Added front and back title sliding to the branded icon animation.

* [104] Merge sync. (material-components#27)

* Start to reconfigure the _BackdropTitle to handle custom transition animations.

* Added a customIcon to _BackdropTitle with the correct animations for branded icon.

* Added front and back title sliding to the branded icon animation.

* rebase fixes

* Responded to comments

* merge fix

* Rearranged the animations and used nested widgets instead of transitions with no local vars.

* Fix bad rebase

* Respond to comments by replacing .animate with .evaluate

[104] PR feedback.

[104] Padding correction.

[TextFields] PR feedback.

[102] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (material-components#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (material-components#44) (material-components#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (material-components#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[META] Readme correction.

[104] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (material-components#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (material-components#44) (material-components#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (material-components#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[103] Completed code.
[104] Starter code.

[103] Removing unneeded directory.

[103] Unused icons code.

[103] Moving supplemental files.

[103] Using recent changes.

[103] Removing unused import.

[103] Data correction.

[103] Adding body2 styling.

[103] Dart 2

[103] Color const correction.

[104] README specificity.

[103] Completed code.
[104] Starter code.

[102] Complete code.
[103] Starter code.

[103] Correcting order of fields. (material-components#10)

[103] Completed code.
[104] Starter code.

[103] Using recent changes.

add backdrop and working menu with filtering

[104] Minor visual changes.

[104] Visual detail.

[104] Newline at EOF.

[104] License stanzas.

[104] Removing files from merge.

[104] Sync.

[104] Correcting license

[104] Adding license stanza

[104] Decrease backdrop radius size to match mocks. (material-components#21)

[104] PR feedback.

[104] Removing an unnecessary widget.

[104] Formatting.

[104] Replaces regular hamburger menu behavior with a branded version (material-components#22)

* [104] Replaces regular hamburger menu behavior with a branded icon version.

* Fixed space nit and refactored branded icon into its own var.

* whitespace

[104] Changing "Panel" to "Layer" (material-components#24)

* [104] Clarifying backdrop.

* [104] Changing panel to layer.

[104] Merge sync. (material-components#27)

[104] Removing log statement.

[104] Correcting import order.

[104] Adding a little whitespace

[104] Backdrop code review feedback (material-components#29)

* [104] PR feedback.

* [104] PR feedback.

* [104] Some whitespace.

[104] Add branded icon menu nav animation (material-components#28)

* [101] Correcting widget class.

* [101] Complete code.
[102] Starter code.

* [102] Minor copy correction.

* [101] Update for Dart 2

* [102] Complete code.
[103] Starter code.

* [102] Correcting home being stateful.

* [103] Correcting order of fields. (material-components#10)

* [102] Removing unneeded value.

* [102] Dart 2.

* [102] Data correction.

* [103] Completed code.
[104] Starter code.

* [103] Removing unneeded directory.

* [103] Unused icons code.

* [103] Moving supplemental files.

* [103] Using recent changes.

* [103] Removing unused import.

* [103] Data correction.

* [103] Adding body2 styling.

* [103] Dart 2

* [103] Color const correction.

* [102] Complete code.
[103] Starter code.

* [103] Completed code.
[104] Starter code.

* [103] Completed code.
[104] Starter code.

* [103] Correcting order of fields. (material-components#10)

* add backdrop and working menu with filtering

* [104] Minor visual changes.

* [103] Using recent changes.

* [104] Visual detail.

* [104] Newline at EOF.

* [104] License stanzas.

* [104] Removing files from merge.

* [104] Sync.

* [104] Correcting license

* [104] Adding license stanza

* [104] Decrease backdrop radius size to match mocks. (material-components#21)

* [104] PR feedback.

* [104] Removing an unnecessary widget.

* [104] Formatting.

* [104] Replaces regular hamburger menu behavior with a branded version (material-components#22)

* [104] Replaces regular hamburger menu behavior with a branded icon version.

* Fixed space nit and refactored branded icon into its own var.

* whitespace

* [104] Changing "Panel" to "Layer" (material-components#24)

* [104] Clarifying backdrop.

* [104] Changing panel to layer.

* Start to reconfigure the _BackdropTitle to handle custom transition animations.

* Added a customIcon to _BackdropTitle with the correct animations for branded icon.

* Added front and back title sliding to the branded icon animation.

* [104] Merge sync. (material-components#27)

* Start to reconfigure the _BackdropTitle to handle custom transition animations.

* Added a customIcon to _BackdropTitle with the correct animations for branded icon.

* Added front and back title sliding to the branded icon animation.

* rebase fixes

* Responded to comments

* merge fix

* Rearranged the animations and used nested widgets instead of transitions with no local vars.

* Fix bad rebase

* Respond to comments by replacing .animate with .evaluate

[104] PR feedback.

[104] Padding correction.

[TextFields] PR feedback.
willlarche added a commit to tianlunlee/material-components-flutter-codelabs that referenced this pull request Jun 28, 2018
[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (material-components#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (material-components#44)

[101] TODOs for starter code (material-components#50)

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (material-components#54)

[102] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (material-components#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (material-components#44) (material-components#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (material-components#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[META] Readme correction.

[103] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (material-components#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (material-components#44) (material-components#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (material-components#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[103] Completed code.
[104] Starter code.

[103] Removing unneeded directory.

[103] Unused icons code.

[103] Moving supplemental files.

[103] Using recent changes.

[103] Removing unused import.

[103] Data correction.

[103] Adding body2 styling.

[103] Dart 2

[103] Color const correction.

[104] README specificity.

[104] Todos for 104 (material-components#51)

[104] Update of 104 todos (material-components#58)

Removed import todos and rearranged a todo to make more sense.

[102] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (material-components#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (material-components#44) (material-components#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (material-components#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[META] Readme correction.

[104] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (material-components#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (material-components#44) (material-components#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (material-components#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[103] Completed code.
[104] Starter code.

[103] Removing unneeded directory.

[103] Unused icons code.

[103] Moving supplemental files.

[103] Using recent changes.

[103] Removing unused import.

[103] Data correction.

[103] Adding body2 styling.

[103] Dart 2

[103] Color const correction.

[104] README specificity.

[103] Completed code.
[104] Starter code.

[102] Complete code.
[103] Starter code.

[103] Correcting order of fields. (material-components#10)

[103] Completed code.
[104] Starter code.

[103] Using recent changes.

add backdrop and working menu with filtering

[104] Minor visual changes.

[104] Visual detail.

[104] Newline at EOF.

[104] License stanzas.

[104] Removing files from merge.

[104] Sync.

[104] Correcting license

[104] Adding license stanza

[104] Decrease backdrop radius size to match mocks. (material-components#21)

[104] PR feedback.

[104] Removing an unnecessary widget.

[104] Formatting.

[104] Replaces regular hamburger menu behavior with a branded version (material-components#22)

* [104] Replaces regular hamburger menu behavior with a branded icon version.

* Fixed space nit and refactored branded icon into its own var.

* whitespace

[104] Changing "Panel" to "Layer" (material-components#24)

* [104] Clarifying backdrop.

* [104] Changing panel to layer.

[104] Merge sync. (material-components#27)

[104] Removing log statement.

[104] Correcting import order.

[104] Adding a little whitespace

[104] Backdrop code review feedback (material-components#29)

* [104] PR feedback.

* [104] PR feedback.

* [104] Some whitespace.

[104] Add branded icon menu nav animation (material-components#28)

* [101] Correcting widget class.

* [101] Complete code.
[102] Starter code.

* [102] Minor copy correction.

* [101] Update for Dart 2

* [102] Complete code.
[103] Starter code.

* [102] Correcting home being stateful.

* [103] Correcting order of fields. (material-components#10)

* [102] Removing unneeded value.

* [102] Dart 2.

* [102] Data correction.

* [103] Completed code.
[104] Starter code.

* [103] Removing unneeded directory.

* [103] Unused icons code.

* [103] Moving supplemental files.

* [103] Using recent changes.

* [103] Removing unused import.

* [103] Data correction.

* [103] Adding body2 styling.

* [103] Dart 2

* [103] Color const correction.

* [102] Complete code.
[103] Starter code.

* [103] Completed code.
[104] Starter code.

* [103] Completed code.
[104] Starter code.

* [103] Correcting order of fields. (material-components#10)

* add backdrop and working menu with filtering

* [104] Minor visual changes.

* [103] Using recent changes.

* [104] Visual detail.

* [104] Newline at EOF.

* [104] License stanzas.

* [104] Removing files from merge.

* [104] Sync.

* [104] Correcting license

* [104] Adding license stanza

* [104] Decrease backdrop radius size to match mocks. (material-components#21)

* [104] PR feedback.

* [104] Removing an unnecessary widget.

* [104] Formatting.

* [104] Replaces regular hamburger menu behavior with a branded version (material-components#22)

* [104] Replaces regular hamburger menu behavior with a branded icon version.

* Fixed space nit and refactored branded icon into its own var.

* whitespace

* [104] Changing "Panel" to "Layer" (material-components#24)

* [104] Clarifying backdrop.

* [104] Changing panel to layer.

* Start to reconfigure the _BackdropTitle to handle custom transition animations.

* Added a customIcon to _BackdropTitle with the correct animations for branded icon.

* Added front and back title sliding to the branded icon animation.

* [104] Merge sync. (material-components#27)

* Start to reconfigure the _BackdropTitle to handle custom transition animations.

* Added a customIcon to _BackdropTitle with the correct animations for branded icon.

* Added front and back title sliding to the branded icon animation.

* rebase fixes

* Responded to comments

* merge fix

* Rearranged the animations and used nested widgets instead of transitions with no local vars.

* Fix bad rebase

* Respond to comments by replacing .animate with .evaluate

[104] PR feedback.

[104] Padding correction.

[TextFields] PR feedback.

[102] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (material-components#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (material-components#44) (material-components#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (material-components#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[META] Readme correction.

[104] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (material-components#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (material-components#44) (material-components#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (material-components#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[103] Completed code.
[104] Starter code.

[103] Removing unneeded directory.

[103] Unused icons code.

[103] Moving supplemental files.

[103] Using recent changes.

[103] Removing unused import.

[103] Data correction.

[103] Adding body2 styling.

[103] Dart 2

[103] Color const correction.

[104] README specificity.

[103] Completed code.
[104] Starter code.

[102] Complete code.
[103] Starter code.

[103] Correcting order of fields. (material-components#10)

[103] Completed code.
[104] Starter code.

[103] Using recent changes.

add backdrop and working menu with filtering

[104] Minor visual changes.

[104] Visual detail.

[104] Newline at EOF.

[104] License stanzas.

[104] Removing files from merge.

[104] Sync.

[104] Correcting license

[104] Adding license stanza

[104] Decrease backdrop radius size to match mocks. (material-components#21)

[104] PR feedback.

[104] Removing an unnecessary widget.

[104] Formatting.

[104] Replaces regular hamburger menu behavior with a branded version (material-components#22)

* [104] Replaces regular hamburger menu behavior with a branded icon version.

* Fixed space nit and refactored branded icon into its own var.

* whitespace

[104] Changing "Panel" to "Layer" (material-components#24)

* [104] Clarifying backdrop.

* [104] Changing panel to layer.

[104] Merge sync. (material-components#27)

[104] Removing log statement.

[104] Correcting import order.

[104] Adding a little whitespace

[104] Backdrop code review feedback (material-components#29)

* [104] PR feedback.

* [104] PR feedback.

* [104] Some whitespace.

[104] Add branded icon menu nav animation (material-components#28)

* [101] Correcting widget class.

* [101] Complete code.
[102] Starter code.

* [102] Minor copy correction.

* [101] Update for Dart 2

* [102] Complete code.
[103] Starter code.

* [102] Correcting home being stateful.

* [103] Correcting order of fields. (material-components#10)

* [102] Removing unneeded value.

* [102] Dart 2.

* [102] Data correction.

* [103] Completed code.
[104] Starter code.

* [103] Removing unneeded directory.

* [103] Unused icons code.

* [103] Moving supplemental files.

* [103] Using recent changes.

* [103] Removing unused import.

* [103] Data correction.

* [103] Adding body2 styling.

* [103] Dart 2

* [103] Color const correction.

* [102] Complete code.
[103] Starter code.

* [103] Completed code.
[104] Starter code.

* [103] Completed code.
[104] Starter code.

* [103] Correcting order of fields. (material-components#10)

* add backdrop and working menu with filtering

* [104] Minor visual changes.

* [103] Using recent changes.

* [104] Visual detail.

* [104] Newline at EOF.

* [104] License stanzas.

* [104] Removing files from merge.

* [104] Sync.

* [104] Correcting license

* [104] Adding license stanza

* [104] Decrease backdrop radius size to match mocks. (material-components#21)

* [104] PR feedback.

* [104] Removing an unnecessary widget.

* [104] Formatting.

* [104] Replaces regular hamburger menu behavior with a branded version (material-components#22)

* [104] Replaces regular hamburger menu behavior with a branded icon version.

* Fixed space nit and refactored branded icon into its own var.

* whitespace

* [104] Changing "Panel" to "Layer" (material-components#24)

* [104] Clarifying backdrop.

* [104] Changing panel to layer.

* Start to reconfigure the _BackdropTitle to handle custom transition animations.

* Added a customIcon to _BackdropTitle with the correct animations for branded icon.

* Added front and back title sliding to the branded icon animation.

* [104] Merge sync. (material-components#27)

* Start to reconfigure the _BackdropTitle to handle custom transition animations.

* Added a customIcon to _BackdropTitle with the correct animations for branded icon.

* Added front and back title sliding to the branded icon animation.

* rebase fixes

* Responded to comments

* merge fix

* Rearranged the animations and used nested widgets instead of transitions with no local vars.

* Fix bad rebase

* Respond to comments by replacing .animate with .evaluate

[104] PR feedback.

[104] Padding correction.

[TextFields] PR feedback.
tianlunlee pushed a commit to tianlunlee/material-components-flutter-codelabs that referenced this pull request Jun 28, 2018
[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (material-components#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (material-components#44) (material-components#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (material-components#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[META] Readme correction.

[104] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (material-components#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (material-components#44) (material-components#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (material-components#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[103] Completed code.
[104] Starter code.

[103] Removing unneeded directory.

[103] Unused icons code.

[103] Moving supplemental files.

[103] Using recent changes.

[103] Removing unused import.

[103] Data correction.

[103] Adding body2 styling.

[103] Dart 2

[103] Color const correction.

[104] README specificity.

[103] Completed code.
[104] Starter code.

[102] Complete code.
[103] Starter code.

[103] Correcting order of fields. (material-components#10)

[103] Completed code.
[104] Starter code.

[103] Using recent changes.

add backdrop and working menu with filtering

[104] Minor visual changes.

[104] Visual detail.

[104] Newline at EOF.

[104] License stanzas.

[104] Removing files from merge.

[104] Sync.

[104] Correcting license

[104] Adding license stanza

[104] Decrease backdrop radius size to match mocks. (material-components#21)

[104] PR feedback.

[104] Removing an unnecessary widget.

[104] Formatting.

[104] Replaces regular hamburger menu behavior with a branded version (material-components#22)

* [104] Replaces regular hamburger menu behavior with a branded icon version.

* Fixed space nit and refactored branded icon into its own var.

* whitespace

[104] Changing "Panel" to "Layer" (material-components#24)

* [104] Clarifying backdrop.

* [104] Changing panel to layer.

[104] Merge sync. (material-components#27)

[104] Removing log statement.

[104] Correcting import order.

[104] Adding a little whitespace

[104] Backdrop code review feedback (material-components#29)

* [104] PR feedback.

* [104] PR feedback.

* [104] Some whitespace.

[104] Add branded icon menu nav animation (material-components#28)

* [101] Correcting widget class.

* [101] Complete code.
[102] Starter code.

* [102] Minor copy correction.

* [101] Update for Dart 2

* [102] Complete code.
[103] Starter code.

* [102] Correcting home being stateful.

* [103] Correcting order of fields. (material-components#10)

* [102] Removing unneeded value.

* [102] Dart 2.

* [102] Data correction.

* [103] Completed code.
[104] Starter code.

* [103] Removing unneeded directory.

* [103] Unused icons code.

* [103] Moving supplemental files.

* [103] Using recent changes.

* [103] Removing unused import.

* [103] Data correction.

* [103] Adding body2 styling.

* [103] Dart 2

* [103] Color const correction.

* [102] Complete code.
[103] Starter code.

* [103] Completed code.
[104] Starter code.

* [103] Completed code.
[104] Starter code.

* [103] Correcting order of fields. (material-components#10)

* add backdrop and working menu with filtering

* [104] Minor visual changes.

* [103] Using recent changes.

* [104] Visual detail.

* [104] Newline at EOF.

* [104] License stanzas.

* [104] Removing files from merge.

* [104] Sync.

* [104] Correcting license

* [104] Adding license stanza

* [104] Decrease backdrop radius size to match mocks. (material-components#21)

* [104] PR feedback.

* [104] Removing an unnecessary widget.

* [104] Formatting.

* [104] Replaces regular hamburger menu behavior with a branded version (material-components#22)

* [104] Replaces regular hamburger menu behavior with a branded icon version.

* Fixed space nit and refactored branded icon into its own var.

* whitespace

* [104] Changing "Panel" to "Layer" (material-components#24)

* [104] Clarifying backdrop.

* [104] Changing panel to layer.

* Start to reconfigure the _BackdropTitle to handle custom transition animations.

* Added a customIcon to _BackdropTitle with the correct animations for branded icon.

* Added front and back title sliding to the branded icon animation.

* [104] Merge sync. (material-components#27)

* Start to reconfigure the _BackdropTitle to handle custom transition animations.

* Added a customIcon to _BackdropTitle with the correct animations for branded icon.

* Added front and back title sliding to the branded icon animation.

* rebase fixes

* Responded to comments

* merge fix

* Rearranged the animations and used nested widgets instead of transitions with no local vars.

* Fix bad rebase

* Respond to comments by replacing .animate with .evaluate

[104] PR feedback.

[104] Padding correction.

[TextFields] PR feedback.
tianlunlee pushed a commit that referenced this pull request Jun 29, 2018
[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44)

[101] TODOs for starter code (#50)

[101] Added future TODOs to 101 starter

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[102] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44) (#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[META] Readme correction.

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[103] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44) (#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[103] Completed code.
[104] Starter code.

[103] Removing unneeded directory.

[103] Unused icons code.

[103] Moving supplemental files.

[103] Using recent changes.

[103] Removing unused import.

[103] Data correction.

[103] Adding body2 styling.

[103] Dart 2

[103] Color const correction.

[104] README specificity.

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[104] Todos for 104 (#51)

[102] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44) (#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[META] Readme correction.

[104] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44) (#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[103] Completed code.
[104] Starter code.

[103] Removing unneeded directory.

[103] Unused icons code.

[103] Moving supplemental files.

[103] Using recent changes.

[103] Removing unused import.

[103] Data correction.

[103] Adding body2 styling.

[103] Dart 2

[103] Color const correction.

[104] README specificity.

[103] Completed code.
[104] Starter code.

[102] Complete code.
[103] Starter code.

[103] Correcting order of fields. (#10)

[103] Completed code.
[104] Starter code.

[103] Using recent changes.

add backdrop and working menu with filtering

[104] Minor visual changes.

[104] Visual detail.

[104] Newline at EOF.

[104] License stanzas.

[104] Removing files from merge.

[104] Sync.

[104] Correcting license

[104] Adding license stanza

[104] Decrease backdrop radius size to match mocks. (#21)

[104] PR feedback.

[104] Removing an unnecessary widget.

[104] Formatting.

[104] Replaces regular hamburger menu behavior with a branded version (#22)

* [104] Replaces regular hamburger menu behavior with a branded icon version.

* Fixed space nit and refactored branded icon into its own var.

* whitespace

[104] Changing "Panel" to "Layer" (#24)

* [104] Clarifying backdrop.

* [104] Changing panel to layer.

[104] Merge sync. (#27)

[104] Removing log statement.

[104] Correcting import order.

[104] Adding a little whitespace

[104] Backdrop code review feedback (#29)

* [104] PR feedback.

* [104] PR feedback.

* [104] Some whitespace.

[104] Add branded icon menu nav animation (#28)

* [101] Correcting widget class.

* [101] Complete code.
[102] Starter code.

* [102] Minor copy correction.

* [101] Update for Dart 2

* [102] Complete code.
[103] Starter code.

* [102] Correcting home being stateful.

* [103] Correcting order of fields. (#10)

* [102] Removing unneeded value.

* [102] Dart 2.

* [102] Data correction.

* [103] Completed code.
[104] Starter code.

* [103] Removing unneeded directory.

* [103] Unused icons code.

* [103] Moving supplemental files.

* [103] Using recent changes.

* [103] Removing unused import.

* [103] Data correction.

* [103] Adding body2 styling.

* [103] Dart 2

* [103] Color const correction.

* [102] Complete code.
[103] Starter code.

* [103] Completed code.
[104] Starter code.

* [103] Completed code.
[104] Starter code.

* [103] Correcting order of fields. (#10)

* add backdrop and working menu with filtering

* [104] Minor visual changes.

* [103] Using recent changes.

* [104] Visual detail.

* [104] Newline at EOF.

* [104] License stanzas.

* [104] Removing files from merge.

* [104] Sync.

* [104] Correcting license

* [104] Adding license stanza

* [104] Decrease backdrop radius size to match mocks. (#21)

* [104] PR feedback.

* [104] Removing an unnecessary widget.

* [104] Formatting.

* [104] Replaces regular hamburger menu behavior with a branded version (#22)

* [104] Replaces regular hamburger menu behavior with a branded icon version.

* Fixed space nit and refactored branded icon into its own var.

* whitespace

* [104] Changing "Panel" to "Layer" (#24)

* [104] Clarifying backdrop.

* [104] Changing panel to layer.

* Start to reconfigure the _BackdropTitle to handle custom transition animations.

* Added a customIcon to _BackdropTitle with the correct animations for branded icon.

* Added front and back title sliding to the branded icon animation.

* [104] Merge sync. (#27)

* Start to reconfigure the _BackdropTitle to handle custom transition animations.

* Added a customIcon to _BackdropTitle with the correct animations for branded icon.

* Added front and back title sliding to the branded icon animation.

* rebase fixes

* Responded to comments

* merge fix

* Rearranged the animations and used nested widgets instead of transitions with no local vars.

* Fix bad rebase

* Respond to comments by replacing .animate with .evaluate

[104] PR feedback.

[104] Padding correction.

[TextFields] PR feedback.
michdud pushed a commit that referenced this pull request Jun 29, 2018
[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44)

[101] TODOs for starter code (#50)

[101] Added future TODOs to 101 starter

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[102] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44) (#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[META] Readme correction.

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[103] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44) (#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[103] Completed code.
[104] Starter code.

[103] Removing unneeded directory.

[103] Unused icons code.

[103] Moving supplemental files.

[103] Using recent changes.

[103] Removing unused import.

[103] Data correction.

[103] Adding body2 styling.

[103] Dart 2

[103] Color const correction.

[104] README specificity.

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[104] Todos for 104 (#51)

[102] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44) (#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[META] Readme correction.

[104] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44) (#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[103] Completed code.
[104] Starter code.

[103] Removing unneeded directory.

[103] Unused icons code.

[103] Moving supplemental files.

[103] Using recent changes.

[103] Removing unused import.

[103] Data correction.

[103] Adding body2 styling.

[103] Dart 2

[103] Color const correction.

[104] README specificity.

[103] Completed code.
[104] Starter code.

[102] Complete code.
[103] Starter code.

[103] Correcting order of fields. (#10)

[103] Completed code.
[104] Starter code.

[103] Using recent changes.

add backdrop and working menu with filtering

[104] Minor visual changes.

[104] Visual detail.

[104] Newline at EOF.

[104] License stanzas.

[104] Removing files from merge.

[104] Sync.

[104] Correcting license

[104] Adding license stanza

[104] Decrease backdrop radius size to match mocks. (#21)

[104] PR feedback.

[104] Removing an unnecessary widget.

[104] Formatting.

[104] Replaces regular hamburger menu behavior with a branded version (#22)

* [104] Replaces regular hamburger menu behavior with a branded icon version.

* Fixed space nit and refactored branded icon into its own var.

* whitespace

[104] Changing "Panel" to "Layer" (#24)

* [104] Clarifying backdrop.

* [104] Changing panel to layer.

[104] Merge sync. (#27)

[104] Removing log statement.

[104] Correcting import order.

[104] Adding a little whitespace

[104] Backdrop code review feedback (#29)

* [104] PR feedback.

* [104] PR feedback.

* [104] Some whitespace.

[104] Add branded icon menu nav animation (#28)

* [101] Correcting widget class.

* [101] Complete code.
[102] Starter code.

* [102] Minor copy correction.

* [101] Update for Dart 2

* [102] Complete code.
[103] Starter code.

* [102] Correcting home being stateful.

* [103] Correcting order of fields. (#10)

* [102] Removing unneeded value.

* [102] Dart 2.

* [102] Data correction.

* [103] Completed code.
[104] Starter code.

* [103] Removing unneeded directory.

* [103] Unused icons code.

* [103] Moving supplemental files.

* [103] Using recent changes.

* [103] Removing unused import.

* [103] Data correction.

* [103] Adding body2 styling.

* [103] Dart 2

* [103] Color const correction.

* [102] Complete code.
[103] Starter code.

* [103] Completed code.
[104] Starter code.

* [103] Completed code.
[104] Starter code.

* [103] Correcting order of fields. (#10)

* add backdrop and working menu with filtering

* [104] Minor visual changes.

* [103] Using recent changes.

* [104] Visual detail.

* [104] Newline at EOF.

* [104] License stanzas.

* [104] Removing files from merge.

* [104] Sync.

* [104] Correcting license

* [104] Adding license stanza

* [104] Decrease backdrop radius size to match mocks. (#21)

* [104] PR feedback.

* [104] Removing an unnecessary widget.

* [104] Formatting.

* [104] Replaces regular hamburger menu behavior with a branded version (#22)

* [104] Replaces regular hamburger menu behavior with a branded icon version.

* Fixed space nit and refactored branded icon into its own var.

* whitespace

* [104] Changing "Panel" to "Layer" (#24)

* [104] Clarifying backdrop.

* [104] Changing panel to layer.

* Start to reconfigure the _BackdropTitle to handle custom transition animations.

* Added a customIcon to _BackdropTitle with the correct animations for branded icon.

* Added front and back title sliding to the branded icon animation.

* [104] Merge sync. (#27)

* Start to reconfigure the _BackdropTitle to handle custom transition animations.

* Added a customIcon to _BackdropTitle with the correct animations for branded icon.

* Added front and back title sliding to the branded icon animation.

* rebase fixes

* Responded to comments

* merge fix

* Rearranged the animations and used nested widgets instead of transitions with no local vars.

* Fix bad rebase

* Respond to comments by replacing .animate with .evaluate

[104] PR feedback.

[104] Padding correction.

[TextFields] PR feedback.

[104] Add color to color.dart and reference in category_menu_page.dart

[101] Completed Code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44)

[101] TODOs for starter code (#50)

[101] Added future TODOs to 101 starter (#59)

[101] Completed code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44)

[101] TODOs for starter code (#50)

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[103] Completed code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44)

[101] TODOs for starter code (#50)

[101] Added future TODOs to 101 starter

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[102] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44) (#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[META] Readme correction.

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[103] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44) (#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[103] Completed code.
[104] Starter code.

[103] Removing unneeded directory.

[103] Unused icons code.

[103] Moving supplemental files.

[103] Using recent changes.

[103] Removing unused import.

[103] Data correction.

[103] Adding body2 styling.

[103] Dart 2

[103] Color const correction.

[104] README specificity.

[104] Add missing newline at end of home.dart
michdud pushed a commit that referenced this pull request Jun 29, 2018
[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44)

[101] TODOs for starter code (#50)

[101] Added future TODOs to 101 starter

[104] Completed code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44)

[101] TODOs for starter code (#50)

[101] Added future TODOs to 101 starter

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[102] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44) (#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[META] Readme correction.

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[103] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44) (#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[103] Completed code.
[104] Starter code.

[103] Removing unneeded directory.

[103] Unused icons code.

[103] Moving supplemental files.

[103] Using recent changes.

[103] Removing unused import.

[103] Data correction.

[103] Adding body2 styling.

[103] Dart 2

[103] Color const correction.

[104] README specificity.

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[104] Todos for 104 (#51)

[102] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44) (#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[META] Readme correction.

[104] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44) (#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[103] Completed code.
[104] Starter code.

[103] Removing unneeded directory.

[103] Unused icons code.

[103] Moving supplemental files.

[103] Using recent changes.

[103] Removing unused import.

[103] Data correction.

[103] Adding body2 styling.

[103] Dart 2

[103] Color const correction.

[104] README specificity.

[103] Completed code.
[104] Starter code.

[102] Complete code.
[103] Starter code.

[103] Correcting order of fields. (#10)

[103] Completed code.
[104] Starter code.

[103] Using recent changes.

add backdrop and working menu with filtering

[104] Minor visual changes.

[104] Visual detail.

[104] Newline at EOF.

[104] License stanzas.

[104] Removing files from merge.

[104] Sync.

[104] Correcting license

[104] Adding license stanza

[104] Decrease backdrop radius size to match mocks. (#21)

[104] PR feedback.

[104] Removing an unnecessary widget.

[104] Formatting.

[104] Replaces regular hamburger menu behavior with a branded version (#22)

* [104] Replaces regular hamburger menu behavior with a branded icon version.

* Fixed space nit and refactored branded icon into its own var.

* whitespace

[104] Changing "Panel" to "Layer" (#24)

* [104] Clarifying backdrop.

* [104] Changing panel to layer.

[104] Merge sync. (#27)

[104] Removing log statement.

[104] Correcting import order.

[104] Adding a little whitespace

[104] Backdrop code review feedback (#29)

* [104] PR feedback.

* [104] PR feedback.

* [104] Some whitespace.

[104] Add branded icon menu nav animation (#28)

* [101] Correcting widget class.

* [101] Complete code.
[102] Starter code.

* [102] Minor copy correction.

* [101] Update for Dart 2

* [102] Complete code.
[103] Starter code.

* [102] Correcting home being stateful.

* [103] Correcting order of fields. (#10)

* [102] Removing unneeded value.

* [102] Dart 2.

* [102] Data correction.

* [103] Completed code.
[104] Starter code.

* [103] Removing unneeded directory.

* [103] Unused icons code.

* [103] Moving supplemental files.

* [103] Using recent changes.

* [103] Removing unused import.

* [103] Data correction.

* [103] Adding body2 styling.

* [103] Dart 2

* [103] Color const correction.

* [102] Complete code.
[103] Starter code.

* [103] Completed code.
[104] Starter code.

* [103] Completed code.
[104] Starter code.

* [103] Correcting order of fields. (#10)

* add backdrop and working menu with filtering

* [104] Minor visual changes.

* [103] Using recent changes.

* [104] Visual detail.

* [104] Newline at EOF.

* [104] License stanzas.

* [104] Removing files from merge.

* [104] Sync.

* [104] Correcting license

* [104] Adding license stanza

* [104] Decrease backdrop radius size to match mocks. (#21)

* [104] PR feedback.

* [104] Removing an unnecessary widget.

* [104] Formatting.

* [104] Replaces regular hamburger menu behavior with a branded version (#22)

* [104] Replaces regular hamburger menu behavior with a branded icon version.

* Fixed space nit and refactored branded icon into its own var.

* whitespace

* [104] Changing "Panel" to "Layer" (#24)

* [104] Clarifying backdrop.

* [104] Changing panel to layer.

* Start to reconfigure the _BackdropTitle to handle custom transition animations.

* Added a customIcon to _BackdropTitle with the correct animations for branded icon.

* Added front and back title sliding to the branded icon animation.

* [104] Merge sync. (#27)

* Start to reconfigure the _BackdropTitle to handle custom transition animations.

* Added a customIcon to _BackdropTitle with the correct animations for branded icon.

* Added front and back title sliding to the branded icon animation.

* rebase fixes

* Responded to comments

* merge fix

* Rearranged the animations and used nested widgets instead of transitions with no local vars.

* Fix bad rebase

* Respond to comments by replacing .animate with .evaluate

[104] PR feedback.

[104] Padding correction.

[TextFields] PR feedback.

[104] Add color to color.dart and reference in category_menu_page.dart

[101] Completed Code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44)

[101] TODOs for starter code (#50)

[101] Added future TODOs to 101 starter (#59)

[101] Completed code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44)

[101] TODOs for starter code (#50)

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[103] Completed code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44)

[101] TODOs for starter code (#50)

[101] Added future TODOs to 101 starter

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[102] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44) (#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[META] Readme correction.

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[103] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44) (#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[103] Completed code.
[104] Starter code.

[103] Removing unneeded directory.

[103] Unused icons code.

[103] Moving supplemental files.

[103] Using recent changes.

[103] Removing unused import.

[103] Data correction.

[103] Adding body2 styling.

[103] Dart 2

[103] Color const correction.

[104] README specificity.

[104] Add missing newline at end of home.dart
michdud pushed a commit that referenced this pull request Jul 3, 2018
[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44)

[101] TODOs for starter code (#50)

[101] Added future TODOs to 101 starter

[101] Completed Code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44)

[101] TODOs for starter code (#50)

[101] Added future TODOs to 101 starter (#59)

[101] Completed code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44)

[101] TODOs for starter code (#50)

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[102] Completed code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44)

[101] TODOs for starter code (#50)

[101] Added future TODOs to 101 starter

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[102] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44) (#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[META] Readme correction.

[103] Completed code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44)

[101] TODOs for starter code (#50)

[101] Added future TODOs to 101 starter

[101] Completed Code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44)

[101] TODOs for starter code (#50)

[101] Added future TODOs to 101 starter (#59)

[101] Completed code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44)

[101] TODOs for starter code (#50)

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[102] Completed code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44)

[101] TODOs for starter code (#50)

[101] Added future TODOs to 101 starter

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[102] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44) (#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[META] Readme correction.

[103] Completed code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44)

[101] TODOs for starter code (#50)

[101] Added future TODOs to 101 starter

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[102] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44) (#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[META] Readme correction.

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[103] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44) (#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[103] Completed code.
[104] Starter code.

[103] Removing unneeded directory.

[103] Unused icons code.

[103] Moving supplemental files.

[103] Using recent changes.

[103] Removing unused import.

[103] Data correction.

[103] Adding body2 styling.

[103] Dart 2

[103] Color const correction.

[104] README specificity.

[103] Add color to be used in 104

[104] Remove confusing comments (#68)

In #64, it was pointed out that these todos don't move to the new _ShrineAppState when it is created in 104. Since the todos are supposed to go inside of _ShrineAppState, it is confusing for them to stay in ShrineApp.

Instead of trying to get learners to move the todos manually, it's probably clearer and simpler to just get rid of them entirely.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44)

[101] TODOs for starter code (#50)

[101] Added future TODOs to 101 starter

[101] Included lines to ignore .iml files and files in idea/ (#67)

[104] �Add missing import.

[104] Completed code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44)

[101] TODOs for starter code (#50)

[101] Added future TODOs to 101 starter

[101] Completed Code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44)

[101] TODOs for starter code (#50)

[101] Added future TODOs to 101 starter (#59)

[101] Completed code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44)

[101] TODOs for starter code (#50)

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[102] Completed code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44)

[101] TODOs for starter code (#50)

[101] Added future TODOs to 101 starter

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[102] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44) (#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[META] Readme correction.

[103] Completed code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44)

[101] TODOs for starter code (#50)

[101] Added future TODOs to 101 starter

[101] Completed Code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44)

[101] TODOs for starter code (#50)

[101] Added future TODOs to 101 starter (#59)

[101] Completed code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44)

[101] TODOs for starter code (#50)

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[102] Completed code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44)

[101] TODOs for starter code (#50)

[101] Added future TODOs to 101 starter

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[102] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44) (#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[META] Readme correction.

[103] Completed code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44)

[101] TODOs for starter code (#50)

[101] Added future TODOs to 101 starter

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[102] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44) (#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[META] Readme correction.

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[103] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44) (#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[103] Completed code.
[104] Starter code.

[103] Removing unneeded directory.

[103] Unused icons code.

[103] Moving supplemental files.

[103] Using recent changes.

[103] Removing unused import.

[103] Data correction.

[103] Adding body2 styling.

[103] Dart 2

[103] Color const correction.

[104] README specificity.

[103] Add color to be used in 104

[104] Remove confusing comments (#68)

In #64, it was pointed out that these todos don't move to the new _ShrineAppState when it is created in 104. Since the todos are supposed to go inside of _ShrineAppState, it is confusing for them to stay in ShrineApp.

Instead of trying to get learners to move the todos manually, it's probably clearer and simpler to just get rid of them entirely.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44)

[101] TODOs for starter code (#50)

[101] Added future TODOs to 101 starter

[101] Included lines to ignore .iml files and files in idea/ (#67)

[104] Completed code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44)

[101] TODOs for starter code (#50)

[101] Added future TODOs to 101 starter

[101] Completed Code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44)

[101] TODOs for starter code (#50)

[101] Added future TODOs to 101 starter (#59)

[101] Completed code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44)

[101] TODOs for starter code (#50)

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[102] Completed code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44)

[101] TODOs for starter code (#50)

[101] Added future TODOs to 101 starter

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[102] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44) (#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[META] Readme correction.

[103] Completed code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44)

[101] TODOs for starter code (#50)

[101] Added future TODOs to 101 starter

[101] Completed Code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44)

[101] TODOs for starter code (#50)

[101] Added future TODOs to 101 starter (#59)

[101] Completed code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44)

[101] TODOs for starter code (#50)

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[102] Completed code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44)

[101] TODOs for starter code (#50)

[101] Added future TODOs to 101 starter

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[102] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44) (#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[META] Readme correction.

[103] Completed code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44)

[101] TODOs for starter code (#50)

[101] Added future TODOs to 101 starter

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[102] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44) (#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[META] Readme correction.

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[103] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44) (#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[103] Completed code.
[104] Starter code.

[103] Removing unneeded directory.

[103] Unused icons code.

[103] Moving supplemental files.

[103] Using recent changes.

[103] Removing unused import.

[103] Data correction.

[103] Adding body2 styling.

[103] Dart 2

[103] Color const correction.

[104] README specificity.

[103] Add color to be used in 104

[104] Remove confusing comments (#68)

In #64, it was pointed out that these todos don't move to the new _ShrineAppState when it is created in 104. Since the todos are supposed to go inside of _ShrineAppState, it is confusing for them to stay in ShrineApp.

Instead of trying to get learners to move the todos manually, it's probably clearer and simpler to just get rid of them entirely.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44)

[101] TODOs for starter code (#50)

[101] Added future TODOs to 101 starter

[101] Included lines to ignore .iml files and files in idea/ (#67)

[104] Completed code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44)

[101] TODOs for starter code (#50)

[101] Added future TODOs to 101 starter

[101] Completed Code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44)

[101] TODOs for starter code (#50)

[101] Added future TODOs to 101 starter (#59)

[101] Completed code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44)

[101] TODOs for starter code (#50)

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[102] Completed code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44)

[101] TODOs for starter code (#50)

[101] Added future TODOs to 101 starter

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[102] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44) (#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[META] Readme correction.

[103] Completed code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44)

[101] TODOs for starter code (#50)

[101] Added future TODOs to 101 starter

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[102] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44) (#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[META] Readme correction.

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[103] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44) (#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[103] Completed code.
[104] Starter code.

[103] Removing unneeded directory.

[103] Unused icons code.

[103] Moving supplemental files.

[103] Using recent changes.

[103] Removing unused import.

[103] Data correction.

[103] Adding body2 styling.

[103] Dart 2

[103] Color const correction.

[104] README specificity.

[104] Completed code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44)

[101] TODOs for starter code (#50)

[101] Added future TODOs to 101 starter

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[102] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44) (#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[META] Readme correction.

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[103] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44) (#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[103] Completed code.
[104] Starter code.

[103] Removing unneeded directory.

[103] Unused icons code.

[103] Moving supplemental files.

[103] Using recent changes.

[103] Removing unused import.

[103] Data correction.

[103] Adding body2 styling.

[103] Dart 2

[103] Color const correction.

[104] README specificity.

[102] Completed code.

[101] Starter code.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Minor renaming.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

[102] starter todos (#54)

[104] Todos for 104 (#51)

[102] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44) (#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[META] Readme correction.

[104] Completed code.

[101] Starter code.

[101] Making AppBar something you add in 102.

[Model] Adding model from the start.

[103] Adding fonts.

[103] Supplemental files.

[101] Correcting supplemental files.

[101] Copy correction.

[101] Minor renaming.

[101] Update for Dart 2.

[101] Missing dependency.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Dart 2.

[101] Correcting model.

[Meta] README file.

[Meta] Clarification.

[101] Copy correction.

[104] Updating data.

[101] Correcting widget class. (#23)

Add link to actual codelab in the README

[Meta] README correction.

[101] README specificity.

[101] Complete code.
[102] Starter code.

[102] Minor copy correction.

[101] Update for Dart 2

[102] Rebase.

Add the slanted_menu.png to assets for 101 branch so its ready when needed. (#44) (#45)

[102] Complete code.
[103] Starter code.

[102] Correcting home being stateful.

[103] Correcting order of fields. (#10)

[102] Removing unneeded value.

[102] Dart 2.

[102] Data correction.

[103] README specificity.

[103] Completed code.
[104] Starter code.

[103] Removing unneeded directory.

[103] Unused icons code.

[103] Moving supplemental files.

[103] Using recent changes.

[103] Removing unused import.

[103] Data correction.

[103] Adding body2 styling.

[103] Dart 2

[103] Color const correction.

[104] README specificity.

[103] Completed code.
[104] Starter code.

[102] Complete code.
[103] Starter code.

[103] Correcting order of fields. (#10)

[103] Completed code.
[104] Starter code.

[103] Using recent changes.

add backdrop and working menu with filtering

[104] Minor visual changes.

[104] Visual detail.

[104] Newline at EOF.

[104] License stanzas.

[104] Removing files from merge.

[104] Sync.

[104] Correcting license

[104] Adding license stanza

[104] Decrease backdrop radius size to match mocks. (#21)

[104] PR feedback.

[104] Removing an unnecessary widget.

[104] Formatting.

[104] Replaces regular hamburger menu behavior with a branded version (#22)

* [104] Replaces regular hamburger menu behavior with a branded icon version.

* Fixed space nit and refactored branded icon into its own var.

* whitespace

[104] Changing "Panel" to "Layer" (#24)

* [104] Clarifying backdrop.

* [104] Changing panel to layer.

[104] Merge sync. (#27)

[104] Removing log statement.

[104] Correcting import order.

[104] Adding a little whitespace

[104] Backdrop code review feedback (#29)

* [104] PR feedback.

* [104] PR feedback.

* [104] Some whitespace.

[104] Add branded icon menu nav animation (#28)

* [101] Correcting widget class.

* [101] Complete code.
[102] Starter code.

* [102] Minor copy correction.

* [101] Update for Dart 2

* [102] Complete code.
[103] Starter code.

* [102] Correcting home being stateful.

* [103] Correcting order of fields. (#10)

* [102] Removing unneeded value.

* [102] Dart 2.

* [102] Data correction.

* [103] Completed code.
[104] Starter code.

* [103] Removing unneeded directory.

* [103] Unused icons code.

* [103] Moving supplemental files.

* [103] Using recent changes.

* [103] Removing unused import.

* [103] Data correction.

* [103] Adding body2 styling.

* [103] Dart 2

* [103] Color const correction.

* [102] Complete code.
[103] Starter code.

* [103] Completed code.
[104] Starter code.

* [103] Completed code.
[104] Starter code.

* [103] Correcting order of fields. (#10)

* add backdrop and working menu with filtering

* [104] Minor visual changes.

* [103] Using recent changes.

* [104] Visual detail.

* [104] Newline at EOF.

* [104] License stanzas.

* [104] Removing files from merge.

* [104] Sync.

* [104] Correcting license

* [104] Adding license stanza

* [104] Decrease backdrop radius size to match mocks. (#21)

* [104] PR feedback.

* [104] Removing an unnecessary widget.

* [104] Formatting.

* [104] Replaces reg…
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants