-
Notifications
You must be signed in to change notification settings - Fork 14
DiningHallMenuDetailView #512
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
base: master
Are you sure you want to change the base?
Changes from 5 commits
8ac0d96
a0c014f
765e219
68d1f07
d36d9f6
8f76dff
34093e7
73129c2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -107,6 +107,11 @@ struct HomeView: View { | |
| LibraryDetailView(library: library) | ||
| .containerBackground(.clear, for: .navigation) | ||
| } | ||
| .navigationDestination(for: BMMenuItem.self) { menuItem in | ||
| DiningMenuItemDetailView(menuItem: menuItem) | ||
| .containerBackground(.clear, for: .navigation) | ||
| .environment(\.menuIconCache, menuIconCacheManager) | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In a recent merged commit, I added Factory, a dependency injection framework, which removes the need for injecting instances of objects into a view's environment. So if you pull and rebase against master, you can see the changes and you won't need |
||
| } | ||
| } | ||
| } | ||
| } | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.