Skip to content

Instantly share code, notes, and snippets.

@zHaytam
Created December 21, 2020 17:17
Show Gist options
  • Save zHaytam/106d568e77324f38aebf86704f0e658c to your computer and use it in GitHub Desktop.
Save zHaytam/106d568e77324f38aebf86704f0e658c to your computer and use it in GitHub Desktop.
<CascadingValue Value="_theme">
<CascadingValue Value="@((Action)(() => _theme = (_theme == "light" ? "dark" : "light")))">
<div>
<MyButton Text="Click me!"></MyButton>
<br />
<ThemeToggler></ThemeToggler>
</div>
</CascadingValue>
</CascadingValue>
@code {
private string _theme = "light";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment