Created
March 28, 2024 18:06
-
-
Save funkyboy/59fe608707c5cca52d53b39e21389068 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Works | |
Button(action: {}, | |
label: { | |
EmptyView() | |
}) | |
.navigationDestination(store: | |
self.store.scope( ... ) | |
) | |
// Does not work | |
EmptyView() | |
.navigationDestination(store: | |
self.store.scope( ... ) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment