Add bool property to show/hide a MudProgressLinear progressbar
See original GitHub issueIs your feature request related to a problem? Please describe.
I’d like a Visible
or Hide
bool property to show/hide a MudProgressLinear progressbar.
Describe alternatives you’ve considered
<MudProgressLinear Style="@($"display: {ShowElement(ActionIsBusy)};")" ...
@code{
protected string ShowElement(bool show)
{
return show ? "block" : "none";
}
}
Issue Analytics
- State:
- Created 3 years ago
- Comments:5 (5 by maintainers)
Top Results From Across the Web
Progress
Progress indicators inform users about the status of ongoing processes, such as loading an app, submitting a form, or saving updates.
Read more >ProgressBar.ShowPaused Property - Windows
Gets or sets a value that indicates whether the progress bar should use visual states that communicate a Paused state to the user....
Read more >How can I change a Boolean property in Lit-Element to ...
Answer: For a Boolean property to be configurable from markup, it must default to false. If it defaults to true, you cannot set...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Actually much better because
Yeah, good enough actually. Thanks.